Necesito que me den el código completo para un programa de desplegar una matriz al reves

Buenas, necesito k alguien me ayude con un programa que tengo k haccer. 
tengo k desplegar una matriz al reves
me pueden dar el codigo completo gracias
Respuesta
1
¿Desplegar al reves que es invertir?
Es decir
1 2 3
4 5 6
7 8 9
pasarlo a
1 4 7
2 5 8
3 6 9
si. creo k primero lo sumas y luego lo restas
Lo siento pero sigo sin entenderte. ¿Quieres la inversa de una matriz?
SI
Te he encontrado este código a ver si te sirve.
import java.lang.*;
public class Inverse {
public static void main(String argv[]) {
double a[][]= {{ 100, 100, 100},
{-100, 300, -100},
{-100, -100, 300}};
int n = a.length;
double d[][] = invert(a);
for (int i=0; i<n; ++i)
for (int j=0; j<n; ++j)
System.out.println(d[j]);
}
public static double[][] invert(double a[][]) {
int n = a.length;
double x[][] = new double[n][n];
double b[][] = new double[n][n];
int index[] = new int[n];
for (int i=0; i<n; ++i) b = 1;
// Transform the matrix into an upper triangle
gaussian(a, index);
// Update the matrix b[j] with the ratios stored
for (int i=0; i<n-1; ++i)
for (int j=i+1; j<n; ++j)
for (int k=0; k<n; ++k)
b[index[j]][k]
-= a[index[j]]*b[index][k];
// Perform backward substitutions
for (int i=0; i<n; ++i) {
x[n-1] = b[index[n-1]]/a[index[n-1]][n-1];
for (int j=n-2; j>=0; --j) {
x[j] = b[index[j]];
for (int k=j+1; k<n; ++k) {
x[j] -= a[index[j]][k]*x[k];
}
x[j] /= a[index[j]][j];
}
}
return x;
}
// Method to carry out the partial-pivoting Gaussian
// elimination. Here index[] stores pivoting order.
public static void gaussian(double a[][],
int index[]) {
int n = index.length;
double c[] = new double[n];
// Initialize the index
for (int i=0; i<n; ++i) index = i;
// Find the rescaling factors, one from each row
for (int i=0; i<n; ++i) {
double c1 = 0;
for (int j=0; j<n; ++j) {
double c0 = Math.abs(a[j]);
if (c0 > c1) c1 = c0;
}
c = c1;
}
// Search the pivoting element from each column
int k = 0;
for (int j=0; j<n-1; ++j) {
double pi1 = 0;
for (int i=j; i<n; ++i) {
double pi0 = Math.abs(a[index][j]);
pi0 /= c[index];
if (pi0 > pi1) {
pi1 = pi0;
k = i;
}
}
// Interchange rows according to the pivoting order
int itmp = index[j];
index[j] = index[k];
index[k] = itmp;
for (int i=j+1; i<n; ++i) {
double pj = a[index][j]/a[index[j]][j];
// Record pivoting ratios below the diagonal
a[index][j] = pj;
// Modify other elements accordingly
for (int l=j+1; l<n; ++l)
a[index][l] -= pj*a[index[j]][l];
}
}
}
}

Añade tu respuesta

Haz clic para o
El autor de la pregunta ya no la sigue por lo que es posible que no reciba tu respuesta.

Más respuestas relacionadas