Click or drag to resize

DoubleSymEigDecomp Class

Class DoubleSymEigDecomp computes the eigenvalues and eigenvectors of a symmetrix matrix.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreDoubleSymEigDecomp

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class DoubleSymEigDecomp : ICloneable

The DoubleSymEigDecomp type exposes the following members.

Constructors
 NameDescription
Public methodDoubleSymEigDecomp Default constructor. Constructs an empty eigenvalue decomposition.
Public methodDoubleSymEigDecomp(DoubleMatrix) Construct a DoubleSymEigDecomp instance for the given symmetric matrix.
Public methodDoubleSymEigDecomp(DoubleSymmetricMatrix) Construct a DoubleSymEigDecomp instance for the given symmetric matrix.
Top
Properties
 NameDescription
Public propertyCols Gets the number of columns in the decomposed matrix.
Public propertyEigenValues Gets the computed eigenvalues.
Public propertyEigenVectors Gets the matrix of eigenvectors.
Public propertyIsGood Returns true if all the eigenvalues and eigenvectors were successfully computed; otherwise, false.
Public propertyNumberOfEigenValues Gets the number of eigenvalues computed.
Public propertyNumberOfEigenVectors Gets the number of eigenvectors computed.
Public propertyRows Gets the number of rows in the decomposed matrix.
Top
Methods
 NameDescription
Public methodClone Creates a deep copy of this eigenvalue decomposition.
Public methodEigenValue Returns the ith eigenvalue.
Public methodEigenVector Returns the ith right eigenvector.
Public methodFactor(DoubleMatrix) Computes all the eigenvalues and eigenvectors for the given square symmetric matrix.
Public methodFactor(DoubleSymmetricMatrix) Computes all the eigenvalues and eigenvectors for the given square symmetric matrix.
Top
See Also