コード例 #1
0
 /// <summary>Swaps the order of the two specified rows in the matrix</summary>
 /// <param name="row1">Row to swap</param>
 /// <param name="row2">Row to swap</param>
 public virtual void SwapRows(Int32 row1, Int32 row2)
 {
     MatrixBase <T> .SwapRows(this, row1, row2);
 }
コード例 #2
0
 /// <summary>Swaps the order of the two specified rows in the matrix</summary>
 /// <param name="row1">Row to swap</param>
 /// <param name="row2">Row to swap</param>
 public void SwapRows(Int32 row1, Int32 row2)
 {
     MatrixBase <Double> .SwapRows(this, row1, row2);
 }