ManagedLapackOfSingle.CholeskyInvert Method

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.0

Overload List

CholeskyInvert(MatrixTriangle, Int32, Span<Complex<Single>>, Int32, Int32)

Computes the inverse of a factored hermitian matrix.
C#
public override void CholeskyInvert(
	MatrixTriangle storedTriangle,
	int n,
	Span<Complex<float>> 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<Single>>
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<Single>, Int32, Int32)

Computes the inverse of a factored hermitian matrix.
C#
public override void CholeskyInvert(
	MatrixTriangle storedTriangle,
	int n,
	Span<float> 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<Single>
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.

See Also