Generic Decomposition Operations<T>.Cholesky Invert Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Overload List
Cholesky | |
Cholesky | |
Cholesky | Computes the inverse of a factored hermitian matrix. |
Cholesky | Computes the inverse of a factored hermitian matrix. |
Cholesky | Computes the inverse of a factored hermitian matrix. |
Cholesky | Computes the inverse of a factored hermitian matrix. |
CholeskyInvert(MatrixTriangle, Int32, Span<T>, Int32, Int32)
Computes the inverse of a factored hermitian matrix.
public override void CholeskyInvert(
MatrixTriangle storedTriangle,
int n,
Span<T> a,
int lda,
out int info
)
Parameters
- storedTriangle MatrixTriangle
- A MatrixTriangle value that indicates whether the matrix components are stored in the upper or lower triangular part.
- n Int32
- The number of rows and columns of the matrix.
- a Span<T>
- A complex array that contains the elements of the matrix.
- lda Int32
- The leading dimension of the matrix a.
- info Int32
- On return, indicates error conditions.
CholeskyInvert(MatrixTriangle, Int32, Span<Complex<T>>, Int32, Int32)
Computes the inverse of a factored hermitian matrix.
public override void CholeskyInvert(
MatrixTriangle storedTriangle,
int n,
Span<Complex<T>> a,
int lda,
out int info
)
Parameters
- storedTriangle MatrixTriangle
- A MatrixTriangle value that indicates whether the matrix components are stored in the upper or lower triangular part.
- n Int32
- The number of rows and columns of the matrix.
- a Span<Complex<T>>
- A complex array that contains the elements of the matrix.
- lda Int32
- The leading dimension of the matrix a.
- info Int32
- On return, indicates error conditions.