コード例 #1
0
ファイル: Matrix.cs プロジェクト: debuglevel/GaussTool
 public static int GetZeilenAnzahl(Fraction[] x)
 {
     return x.GetLength(0) - 1; //Anzahl der Spalten der Matrix
 }
コード例 #2
0
ファイル: Matrix.cs プロジェクト: lzhm216/coordtrans
 /// <summary>
 /// Constructors
 /// </summary>
 public Matrix(Fraction[,] elements)
 {
     m_iElement=elements;
     m_iRows=elements.GetLength(0);
     m_iCols=elements.GetLength(1);
 }