SymmetricMatrix<T>.PermuteRowsAndColumnsInPlace Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

PermuteRowsAndColumnsInPlace(Permutation) Permutes the rows and columns of the matrix using the specified Permutation.
PermuteRowsAndColumnsInPlace(Permutation, Permutation) 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.
C#
public override Matrix<T> PermuteRowsAndColumnsInPlace(
	Permutation permutation
)

Parameters

permutation  Permutation
A Permutation object.

Return Value

Matrix<T>

Remarks

This method works on symmetric matrices.

See Also