Click or drag to resize
Accord.NET (logo)

JaggedEigenvalueDecompositionF Constructor (Single, Boolean, Boolean)

Construct an eigenvalue decomposition.

Namespace:  Accord.Math.Decompositions
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public JaggedEigenvalueDecompositionF(
	float[][] value,
	bool inPlace = false,
	bool sort = false
)
Request Example View Source

Parameters

value
Type: SystemSingle
The matrix to be decomposed.
inPlace (Optional)
Type: SystemBoolean
Pass to perform the decomposition in place. The matrix value will be destroyed in the process, resulting in less memory comsumption.
sort (Optional)
Type: SystemBoolean
Pass to sort the eigenvalues and eigenvectors at the end of the decomposition.
See Also