Click or drag to resize

FloatEigDecompFactorNoPreconditioning Method

Computes all eigenvalues and eigenvectors for the given square matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void FactorNoPreconditioning(
	FloatMatrix A
)

Parameters

A  FloatMatrix
A square matrix.
Exceptions
ExceptionCondition
MatrixNotSquareExceptionThrown if the matrix A is not square.
Remarks
A preliminary matrix balancing (pre-conditioning) is not done before computing the eigenvalues and eigenvectors. Use
C#
Factor( FloatMatrix A)
if pre-conditioning is required for your matrix.
See Also