Click or drag to resize

FloatSymEigDecomp Class

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

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

The FloatSymEigDecomp type exposes the following members.

Constructors
 NameDescription
Public methodFloatSymEigDecomp Default constructor. Constructs an empty eigenvalue decomposition.
Public methodFloatSymEigDecomp(FloatMatrix) Construct a FloatSymEigDecomp instance for the given symmetric matrix.
Public methodFloatSymEigDecomp(FloatSymmetricMatrix) Construct a FloatSymEigDecomp 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(FloatMatrix) Computes all the eigenvalues and eigenvectors for the given square symmetric matrix.
Public methodFactor(FloatSymmetricMatrix) Computes all the eigenvalues and eigenvectors for the given square symmetric matrix.
Top
See Also