
C#矩阵类运算
文章平均质量分 81
qxl6
这个作者很懒,什么都没留下…
展开
-
C#矩阵类运算2
public class Matrix { double[,] A; //m行n列 int m, n; string name; public Matrix(int am, int an) { m = am; n = an;转载 2013-03-11 20:15:09 · 904 阅读 · 0 评论 -
C#矩阵类运算
/// /// 矩阵类 /// /// public sealed class Matrix { int row, column; //矩阵的行列数 double [,] data; //矩阵的数据 #region 构造函数 public Matrix(int rowNum转载 2013-03-11 20:07:17 · 2718 阅读 · 0 评论