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

Returns the generalized eigenvalue decomposition for this matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual 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