Click or drag to resize
EigenSolve Method
Solves for the eigenvalues and (optionally) the eigenvectors of a real square matrix.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public virtual void Solve(
	double[,] a,
	bool computeVectors
)

Parameters

a
Type: SystemDouble
A double square matrix for which the eigenvalues and (optionally) the eigenvectors are to be found.
computeVectors
Type: SystemBoolean
A bool value of true if the eigenvectors are to be computed.
Exceptions
ExceptionCondition
DidNotConvergeException is thrown when the algorithm fails to converge on the eigenvalues of the matrix
See Also