public class Matrix
{
public static int rows;
public static int colms;//columns
public static int[][] numbers;
public Matrix(int[][] numbers)
{
numbers = new int[rows][colms];
}
public static boolean isSquareMatrix(Matrix m)
{
//rows = numbers.length;
//colms = numbers[0].length;
if(rows == colms)
return true;
else
return false;
}
public static Matrix getTranspose(Matrix trans)
{
trans = new Matrix(numbers);
for(int i =0; i < rows; i++)
{
for(int j = 0; j < colms; j++)
{
trans.numbers[i][j] = numbers[j][i];
}
}
return trans;
}
public static void main(String[] args)
{
int[][] m1 = new int[][]{{1,4}, {5,3}};
Matrix Mat = new Matrix(m1);
System.out.print(Mat);
System.out.print(getTranspose(Mat));
}
}
|
| ||||
|
feedback
|
|
You need to implement This Some additional recommendations based on your code:
Here's some improved code:
| ||||
|
feedback
|
|
for a quick and dirty method:
On an unrelated note, the variables rows, colms, numbers and the methods isSquareMatrix should not be declared as static. Otherwise, when you get a transpose, you're going to end up with two matrix objects writing to the same class variables. | |||||||
feedback
|
|
You didn't define a | |||
|
feedback
|
it will call the toString method of the Matrix class. So, if you want to print your Matrix, you will have to override toString method
| |||
|
feedback
|
|
To display the Another bug in the code it you are not setting the value of
in your constructor, | |||||||||||
feedback
|