Matrix<T>.Permute Rows And Columns In Place Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Permute | Permutes the rows and columns of the matrix using the specified Permutation. |
Permute | Permutes the rows and columns of the matrix using the specified row and column Permutation. |
PermuteRowsAndColumnsInPlace(Permutation)
Permutes the rows and columns of the matrix using the specified Permutation.
public virtual Matrix<T> PermuteRowsAndColumnsInPlace(
Permutation permutation
)
Parameters
- permutation Permutation
- A Permutation object.
Return Value
Matrix<T>Remarks
This method works on symmetric matrices.
PermuteRowsAndColumnsInPlace(Permutation, Permutation)
Permutes the rows and columns of the matrix using the specified row and column Permutation.
public virtual Matrix<T> PermuteRowsAndColumnsInPlace(
Permutation rowPermutation,
Permutation columnPermutation
)
Parameters
- rowPermutation Permutation
- The Permutation used to permute the rows.
- columnPermutation Permutation
- The Permutation used to permute the columns.