Ejemplo n.º 1
0
 /// <summary>
 /// The function multiplies the given row of the current matrix object by a Fraction
 /// </summary>
 public void MultiplyRow(int iRow, Fraction frac)
 {
     for (int j = 0; j < this.Cols; j++)
     {
         this[iRow, j] *= frac;
         Fraction.ReduceFraction(this[iRow, j]);
     }
 }