ManagedLinearAlgebraProviderEigenDecomp(Boolean, Int32, Complex, Complex, Complex, Complex) Method |
Computes the eigenvalues and eigenvectors of a matrix.
Namespace: Altaxo.Calc.Providers.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void EigenDecomp(
bool isSymmetric,
int order,
Complex[] matrix,
Complex[] matrixEv,
Complex[] vectorEv,
Complex[] matrixD
)
Parameters
- isSymmetric Boolean
- Whether the matrix is symmetric or not.
- order Int32
- The order of the matrix.
- matrix Complex
- The matrix to decompose. The length of the array must be order * order.
- matrixEv Complex
- On output, the matrix contains the eigen vectors. The length of the array must be order * order.
- vectorEv Complex
- On output, the eigen values (λ) of matrix in ascending value. The length of the array must order.
- matrixD Complex
- On output, the block diagonal eigenvalue matrix. The length of the array must be order * order.
Implements
ILinearAlgebraProviderTEigenDecomp(Boolean, Int32, T, T, Complex, T)See Also