|
JaggedGeneralizedEigenvalueDecomposition Constructor
|
Constructs a new generalized eigenvalue decomposition.
Namespace:
Accord.Math.Decompositions
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public JaggedGeneralizedEigenvalueDecomposition(
double[][] a,
double[][] b,
bool sort = false
)
Public Sub New (
a As Double()(),
b As Double()(),
Optional sort As Boolean = false
)
Request Example
View SourceParameters
- a
- Type: SystemDouble
The first matrix of the (A,B) matrix pencil. - b
- Type: SystemDouble
The second matrix of the (A,B) matrix pencil. - sort (Optional)
- Type: SystemBoolean
Pass to sort the eigenvalues and eigenvectors at the end
of the decomposition.
See Also