Matrix<T>.GetEigenvalueDecomposition Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

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 and another matrix.
GetEigenvalueDecomposition(Matrix<T>, Boolean) Returns the generalized eigenvalue decomposition for this matrix and another matrix.

GetEigenvalueDecomposition

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

Return Value

EigenvalueDecomposition<T>
A EigenvalueDecomposition<T> object.

GetEigenvalueDecomposition(Boolean)

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

Parameters

overwriteMatrix  Boolean
Indicates whether the elements of the matrix may be overwritten by the decomposition.

Return Value

EigenvalueDecomposition<T>
A EigenvalueDecomposition<T> object.

GetEigenvalueDecomposition(Matrix<T>)

Returns the generalized eigenvalue decomposition for this matrix and another matrix.
C#
public GeneralizedEigenvalueDecomposition<T> GetEigenvalueDecomposition(
	Matrix<T> matrix2
)

Parameters

matrix2  Matrix<T>
The secondary matrix in the decomposition.

Return Value

GeneralizedEigenvalueDecomposition<T>
A GeneralizedEigenvalueDecomposition<T> object.

GetEigenvalueDecomposition(Matrix<T>, Boolean)

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

Parameters

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

Return Value

GeneralizedEigenvalueDecomposition<T>
A GeneralizedEigenvalueDecomposition<T> object.

See Also