Constructs the eigenvalues and (optionally) the eigenvectors for a real symmetric matrix.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public SymEigen(
	double[,] a,
	bool computeVectors
)
Visual Basic (Declaration)
Public Sub New ( _
	a As Double(,), _
	computeVectors As Boolean _
)
Visual C++
public:
SymEigen(
	array<double,2>^ a, 
	bool computeVectors
)

Parameters

a
Type: array< System..::.Double ,2>[,](,)[,]
A double symmetric matrix whose eigensystem is to be constructed.
computeVectors
Type: System..::.Boolean
A bool, true if the eigenvectors are to be computed.

See Also