-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMatrixTranspose.java
46 lines (37 loc) · 1.26 KB
/
MatrixTranspose.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Java Program to Find Transpose of a Matrix
// p4n.in
// codeswithpankaj.com
public class MatrixTranspose {
public static void main(String[] args) {
// Define the matrix
int[][] matrix = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
// Find the transpose
int[][] transposeMatrix = findTranspose(matrix);
// Display the result
System.out.println("Original Matrix:");
displayMatrix(matrix);
System.out.println("\nTranspose of the Matrix:");
displayMatrix(transposeMatrix);
}
public static int[][] findTranspose(int[][] matrix) {
int rows = matrix.length;
int columns = matrix[0].length;
int[][] transposeMatrix = new int[columns][rows];
for (int i = 0; i < rows; i++) {
for (int j = 0; j < columns; j++) {
transposeMatrix[j][i] = matrix[i][j];
}
}
return transposeMatrix;
}
public static void displayMatrix(int[][] matrix) {
int rows = matrix.length;
int columns = matrix[0].length;
for (int i = 0; i < rows; i++) {
for (int j = 0; j < columns; j++) {
System.out.print(matrix[i][j] + " ");
}
System.out.println();
}
}
}