Managed Lapack Of Single.Cholesky Solve Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
Overload List
Cholesky | |
Cholesky | |
Cholesky | Solves a hermitian system of equations. |
Cholesky | Solves a hermitian system of equations. |
Cholesky | Solves a hermitian system of equations. |
Cholesky | Solves a hermitian system of equations. |
CholeskySolve(MatrixTriangle, Int32, Int32, ReadOnlySpan<Complex<Single>>, Int32, Span<Complex<Single>>, Int32, Int32)
Solves a hermitian system of equations.
public override void CholeskySolve(
MatrixTriangle storedTriangle,
int n,
int nrhs,
ReadOnlySpan<Complex<float>> a,
int lda,
Span<Complex<float>> b,
int ldb,
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.
- nrhs Int32
- The number of right hand sides.
- a ReadOnlySpan<Complex<Single>>
- A complex array that contains the elements of the matrix.
- lda Int32
- The leading dimension of the matrix a.
- b Span<Complex<Single>>
- A complex array that contains the components of the right-hand side(s).
- ldb Int32
- The leading dimension of the matrix b.
- info Int32
- On return, indicates error conditions.
CholeskySolve(MatrixTriangle, Int32, Int32, ReadOnlySpan<Single>, Int32, Span<Single>, Int32, Int32)
Solves a hermitian system of equations.
public override void CholeskySolve(
MatrixTriangle storedTriangle,
int n,
int nrhs,
ReadOnlySpan<float> a,
int lda,
Span<float> b,
int ldb,
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.
- nrhs Int32
- The number of right hand sides.
- a ReadOnlySpan<Single>
- A complex array that contains the elements of the matrix.
- lda Int32
- The leading dimension of the matrix a.
- b Span<Single>
- A complex array that contains the components of the right-hand side(s).
- ldb Int32
- The leading dimension of the matrix b.
- info Int32
- On return, indicates error conditions.