C#里怎么计算n阶行列式

2025-03-10 01:26:03
推荐回答(1个)
回答1:

用一个二维数组定义啊

矩阵本身只是一个二维的数组而已
关键是在矩阵各种运算比较复杂

int[,] a=new int[n,n]; 或者用doublo格式