SpectralDecomposition Class

Provides methods to compute the Spectral Decomposition of symmetric real or Hermitian complex matrices.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static class SpectralDecomposition
Inheritance
Object    SpectralDecomposition

Remarks

Let LaTeX equation be a normal matrix, i.e., it satisfies

LaTeX equation

where LaTeX equation returns the conjugate transpose of LaTeX equation.

The Spectral Decomposition of LaTeX equation is a factorization having the following form:

LaTeX equation

where LaTeX equation is a orthonormal matrix whose columns are eigenvectors of LaTeX equation, and LaTeX equation is a diagonal matrix, whose main diagonal entries correspond to the eigenvalues of LaTeX equation.

Method Decompose(ComplexMatrix, Boolean, ComplexMatrix) returns matrices LaTeX equation and LaTeX equation when LaTeX equation is a Hermitian complex matrix, while Decompose(DoubleMatrix, Boolean, DoubleMatrix) returns the same matrices for a symmetric real matrix.

Method GetEigenvalues(DoubleMatrix, Boolean) and its overloads return the eigenvalues involved in a spectral decomposition, without computing the corresponding eigenvectors.

Methods

Decompose(ComplexMatrix, Boolean, ComplexMatrix) Computes eigenvalues and eigenvectors of the specified Hermitian complex matrix.
Decompose(DoubleMatrix, Boolean, DoubleMatrix) Computes eigenvalues and eigenvectors of the specified symmetric real matrix.
Decompose(ReadOnlyComplexMatrix, Boolean, ComplexMatrix) Computes eigenvalues and eigenvectors of the specified Hermitian complex matrix.
Decompose(ReadOnlyDoubleMatrix, Boolean, DoubleMatrix) Computes eigenvalues and eigenvectors of the specified symmetric real matrix.
GetEigenvalues(ComplexMatrix, Boolean) Computes the eigenvalues of the specified Hermitian complex matrix.
GetEigenvalues(DoubleMatrix, Boolean) Computes the eigenvalues of the specified symmetric real matrix.
GetEigenvalues(ReadOnlyComplexMatrix, Boolean) Computes the eigenvalues of the specified Hermitian complex matrix.
GetEigenvalues(ReadOnlyDoubleMatrix, Boolean) Computes the eigenvalues of the specified symmetric real matrix.

See Also