Computes all the eigenvalues and eigenvectors for the given square symmetric matrix.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public void Factor( FloatMatrix A ) |
| Visual Basic (Declaration) |
|---|
Public Sub Factor ( _ A As FloatMatrix _ ) |
| Visual C++ |
|---|
public: void Factor( FloatMatrix^ A ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.FloatMatrix
A square symmetric matrix.
Remarks
All eigenvalues and eigenvectors are computed.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MatrixNotSquareException | Thrown if the matrix A is not square. |