线代矩阵
程序员文章站
2022-07-12 14:14:14
...
线代矩阵
不要忘了改类名
----4月4日
package com.hjh.function;
import java.util.Scanner;
public class test1 {
public static void main(String[] args) {
// int[][] a = {
// {3, 1, -1, 2},
// {-5, 1, 3, -4},
// {2, 0, 1, -1},
// {1, -5, 3, -3},
// };
// det = 40;
Scanner sc = new Scanner(System.in);
System.out.println("请输入矩阵阶数:");
int n = sc.nextInt();
int[][] det = new int[n][n];
System.out.println("请输入数据:");
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
det[i][j] = sc.nextInt();
}
}
System.out.println("矩阵的值是: " + detValue(det));
}
public static int detValue(int[][] det) {
int n = det.length;
int sum = 0;
if (n == 1) {
return det[0][0];
} else {
for (int i = 0; i < n; i++) {
if (i % 2 == 0) {
sum += det[i][0] * detValue(detUnfold(det, i));
} else {
sum -= det[i][0] * detValue(detUnfold(det, i));
}
}
}
return sum;
}
// 行列式按第一列展开
public static int[][] detUnfold(int[][] det, int r) {
int n = det.length;
int[][] dett = new int[n - 1][n - 1];
for (int i = 0; i < n; i++) {
for (int j = 1; j < n; j++) {
if (i < r) {
dett[i][j - 1] = det[i][j];
} else if (i > r){
dett[i - 1][j - 1] = det[i][j];
}
}
}
return dett;
}
}
上一篇: 找出数组中符合某些条件的对象数组
下一篇: 矩阵应用实例及js实现矩阵转置算法
推荐阅读
-
广东上211要多少分?广东高考2020多少分上211?广东211大学分数线(2021参考)
-
四川上211要多少分?四川考生多少分能上211?附211在四川录取分数线
-
全国43所军校分数线排名-2020军校排名和录取分数(2021年参考)
-
安徽上211要多少分?安徽多少分考上211大学?附安徽211录取分数线(2021参考)
-
电子科技大学王牌专业排名及录取分数线2021年参考(含各省数据)
-
2021公费师范生分配到哪里?附2020年部属公费师范生分数线(2021年参考)
-
想考985至少多少分?附985最低录取分数线文理科2021参考
-
上海考本科大学需要多少分?附上海市本科学校排名及2020录取分数线
-
中山大学冷门专业排名及就业前景-2020年中山大学录取分数线
-
天津考本科大学需要多少分?附天津市本科学校2020录取分数线及排名一览表