Computes the inverse of a factored hermitian matrix.
Namespace: Extreme.Mathematics.ImplementationAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public abstract void CholeskyInvert(
MatrixTriangle storageTriangle,
int n,
Array2D<TComplex> a,
out int info
)
Public MustOverride Sub CholeskyInvert (
storageTriangle As MatrixTriangle,
n As Integer,
a As Array2D(Of TComplex),
<OutAttribute> ByRef info As Integer
)
public:
virtual void CholeskyInvert(
MatrixTriangle storageTriangle,
int n,
Array2D<TComplex> a,
[OutAttribute] int% info
) abstract
abstract CholeskyInvert :
storageTriangle : MatrixTriangle *
n : int *
a : Array2D<'TComplex> *
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. - a
- Type: Extreme.CollectionsArray2DTComplex
A complex array that contains the elements of the matrix. - info
- Type: SystemInt32
On return, indicates error conditions.
Numerical Libraries
Supported in: 5.x
Reference