SpectralDecompositionGetEigenvalues(ReadOnlyDoubleMatrix, Boolean) Method
Computes the eigenvalues of the specified symmetric real matrix.
Namespace: Novacta.Analytics.AdvancedAssembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
public static DoubleMatrix GetEigenvalues(
ReadOnlyDoubleMatrix matrix,
bool lowerTriangularPart
)
Public Shared Function GetEigenvalues (
matrix As ReadOnlyDoubleMatrix,
lowerTriangularPart As Boolean
) As DoubleMatrix
public:
static DoubleMatrix^ GetEigenvalues(
ReadOnlyDoubleMatrix^ matrix,
bool lowerTriangularPart
)
static member GetEigenvalues :
matrix : ReadOnlyDoubleMatrix *
lowerTriangularPart : bool -> DoubleMatrix
- matrix ReadOnlyDoubleMatrix
-
The matrix containing the lower or upper triangular part of
the matrix whose eigenvalues must be computed.
- lowerTriangularPart Boolean
- true if matrix contains the lower
triangular part of the matrix to be decomposed;
false if matrix contains
its upper triangular part.
DoubleMatrix
A column vector containing the eigenvalues
of the decomposed matrix, in ascending order.