用Java转置矩阵
矩阵的转置是矩阵在其对角线上翻转,即矩阵的行索引和列索引被切换。一个例子如下:
Matrix = 1 2 3 4 5 6 7 8 9 Transpose = 1 4 7 2 5 8 3 6 9
演示该程序的程序如下。
示例
public class Example {
public static void main(String args[]) {
int i, j;
int row = 3;
int col = 2;
int arr[][] = {{2, 5}, {1, 8}, {6, 9} };
System.out.println("The original matrix is: ");
for(i = 0; i < row; i++) {
for(j = 0; j < col; j++) {
System.out.print(arr[i][j] + " ");
}
System.out.print("\n");
}
System.out.println("The matrix transpose is: ");
for(i = 0; i < col; i++) {
for(j = 0; j < row; j++) {
System.out.print(arr[j][i] + " ");
}
System.out.print("\n");
}
}
}输出结果
The original matrix is: 2 5 1 8 6 9 The matrix transpose is: 2 1 6 5 8 9
热门推荐
10 病人祝福语老师寄语简短
11 新娘生孩子祝福语简短
12 婆婆66岁祝福语简短
13 今天孩子高考祝福语简短
14 送彩票生日祝福语简短
15 分别祝福语简短情话英文
16 画室揭牌仪式祝福语简短
17 女友妈妈生日祝福语简短
18 离别赠言离职祝福语简短