SymmetricMatrix<T>.GetEigenvalueDecomposition Method

Definition

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

Overload List

GetEigenvalueDecomposition() Returns the eigenvalue decomposition for this matrix.
GetEigenvalueDecomposition(Boolean) Returns the eigenvalue decomposition for this matrix.
GetEigenvalueDecomposition(Matrix<T>) Returns the generalized eigenvalue decomposition for this matrix.
GetEigenvalueDecomposition(Matrix<T>, Boolean) Returns the generalized eigenvalue decomposition for this matrix.

SymmetricMatrix<T>.GetEigenvalueDecomposition(Boolean)

Returns the eigenvalue decomposition for this matrix.
C#
public override EigenvalueDecomposition<T> GetEigenvalueDecomposition(
	bool overwriteMatrix
)

Parameters

overwriteMatrix  Boolean
A Boolean value that indicates whether the elements of the matrix may be overwritten by the decomposition.

Return Value

EigenvalueDecomposition<T>
A EigenvalueDecomposition<T> object.

SymmetricMatrix<T>.GetEigenvalueDecomposition(Matrix<T>, Boolean)

Returns the generalized eigenvalue decomposition for this matrix.
C#
public override GeneralizedEigenvalueDecomposition<T> GetEigenvalueDecomposition(
	Matrix<T> matrix2,
	bool overwriteMatrix
)

Parameters

matrix2  Matrix<T>
The secondary matrix in the decomposition.
overwriteMatrix  Boolean
A Boolean value that indicates whether the elements of the matrices may be overwritten by the decomposition.

Return Value

GeneralizedEigenvalueDecomposition<T>
A GeneralizedEigenvalueDecomposition<T> object.

See Also