要编写一个两个矩阵相乘的JAVA方法,本人不懂,求高手帮忙!!万分感激!!

2025-01-01 09:17:52
推荐回答(2个)
回答1:

你好,按照你的要求代码如下,给出了注释和运行结果,可以直接运行:

public class test2 {
public static int[][] multiplyMatrix(int[][] a, int[][] b) {
// 判断是否合法
if (a == null || a == null || a.length == 0 || b.length == 0
|| a[0].length != b.length) {
return null;
}
// 计算相乘
int[][] c = new int[a.length][b[0].length];
for (int i = 0; i < a.length; i++) {
for (int j = 0; j < b[0].length; j++) {
for (int k = 0; k < a[0].length; k++) {
c[i][j] += a[i][k] * b[k][j];
}
}
}
return c;
}

public static void main(String[] args) {
int[][] a = new int[][] { { 1, 2, 3 }, { 1, 2, 3 } };
int[][] b = new int[][] { { 1, 2 }, { 1, 2 }, { 1, 2 } };
int[][] c = multiplyMatrix(a, b);

printMatrix(a);
printMatrix(b);
printMatrix(c);
}

// 打印矩阵
public static void printMatrix(int[][] c) {
if (c != null) {
for (int i = 0; i < c.length; i++) {
for (int j = 0; j < c[0].length; j++) {
System.out.print(c[i][j] + " ");
}
System.out.println();
}
} else {
System.out.println("无效");
}
System.out.println();
}
}

运行结果:
1 2 3
1 2 3

1 2
1 2
1 2

6 12
6 12

回答2:

这个你可以看看线性代数