Generic Decomposition Operations<T>.Triangular 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
Triangular | |
Triangular | |
Triangular | Computes the inverse of a complex triangular matrix. |
Triangular | Computes the inverse of a complex triangular matrix. |
Triangular | Computes the inverse of a complex triangular matrix. |
Triangular | Computes the inverse of a complex triangular matrix. |
TriangularInvert(MatrixTriangle, MatrixDiagonal, Int32, Span<T>, Int32, Int32)
Computes the inverse of a complex triangular matrix.
public override void TriangularInvert(
MatrixTriangle storedTriangle,
MatrixDiagonal diag,
int n,
Span<T> a,
int lda,
out int info
)
Parameters
- storedTriangle MatrixTriangle
- A MatrixTriangle value that indicates whether the matrix is upper or lower triangular.
- diag MatrixDiagonal
- A MatrixDiagonal value that indicates whether the matrix is unit diagonal.
- 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.
TriangularInvert(MatrixTriangle, MatrixDiagonal, Int32, Span<Complex<T>>, Int32, Int32)
Computes the inverse of a complex triangular matrix.
public override void TriangularInvert(
MatrixTriangle storedTriangle,
MatrixDiagonal diag,
int n,
Span<Complex<T>> a,
int lda,
out int info
)
Parameters
- storedTriangle MatrixTriangle
- A MatrixTriangle value that indicates whether the matrix is upper or lower triangular.
- diag MatrixDiagonal
- A MatrixDiagonal value that indicates whether the matrix is unit diagonal.
- 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.