SymEigen Constructor (Double, Boolean) |
Constructs the eigenvalues and (optionally) the eigenvectors for a
real symmetric matrix.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public SymEigen(
double[,] a,
bool computeVectors
)
Public Sub New (
a As Double(,),
computeVectors As Boolean
)
public:
SymEigen(
array<double,2>^ a,
bool computeVectors
)
new :
a : float[,] *
computeVectors : bool -> SymEigen
Parameters
- a
- Type: SystemDouble
A double symmetric matrix whose eigensystem is to be
constructed.
- computeVectors
- Type: SystemBoolean
A bool, true if the eigenvectors are to be computed.
See Also