Solves a hermitian system of equations.
Namespace: Extreme.Mathematics.Generic.LinearAlgebra.ImplementationAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public override void CholeskySolve(
MatrixTriangle storageTriangle,
int n,
int nrhs,
Array2D<Complex<T>> a,
Array2D<Complex<T>> b,
out int info
)
Public Overrides Sub CholeskySolve (
storageTriangle As MatrixTriangle,
n As Integer,
nrhs As Integer,
a As Array2D(Of Complex(Of T)),
b As Array2D(Of Complex(Of T)),
<OutAttribute> ByRef info As Integer
)
public:
virtual void CholeskySolve(
MatrixTriangle storageTriangle,
int n,
int nrhs,
Array2D<Complex<T>> a,
Array2D<Complex<T>> b,
[OutAttribute] int% info
) override
abstract CholeskySolve :
storageTriangle : MatrixTriangle *
n : int *
nrhs : int *
a : Array2D<Complex<'T>> *
b : Array2D<Complex<'T>> *
info : int byref -> unit
override CholeskySolve :
storageTriangle : MatrixTriangle *
n : int *
nrhs : int *
a : Array2D<Complex<'T>> *
b : Array2D<Complex<'T>> *
info : int byref -> unit
Parameters
- storageTriangle
- Type: Extreme.MathematicsMatrixTriangle
A MatrixTriangle value that indicates whether the matrix components
are stored in the upper or lower triangular part. - n
- Type: SystemInt32
The number of rows and columns of the matrix. - nrhs
- Type: SystemInt32
The number of right hand sides. - a
- Type: Extreme.CollectionsArray2DComplexT
A complex array that contains the elements of the matrix. - b
- Type: Extreme.CollectionsArray2DComplexT
A complex array that contains the components of the right-hand side(s). - info
- Type: SystemInt32
On return, indicates error conditions.
Numerical Libraries
Supported in: 5.x
Reference