Ejemplo n.º 1
0
 public static int GetZeilenAnzahl(Fraction[] x)
 {
     return x.GetLength(0) - 1; //Anzahl der Spalten der Matrix
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructors
 /// </summary>
 public Matrix(Fraction[,] elements)
 {
     m_iElement=elements;
     m_iRows=elements.GetLength(0);
     m_iCols=elements.GetLength(1);
 }