ManagedLapackOfSingle.CholeskyEstimateCondition Method

Definition

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

Overload List

CholeskyEstimateCondition(MatrixTriangle, Int32, ReadOnlySpan<Complex<Single>>, Int32, Single, Single, Int32)

Estimates the reciprocal of the condition number of a factored hermitian matrix.
C#
public override void CholeskyEstimateCondition(
	MatrixTriangle storedTriangle,
	int n,
	ReadOnlySpan<Complex<float>> a,
	int lda,
	float aNorm,
	out float rcond,
	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  ReadOnlySpan<Complex<Single>>
A complex array that contains the elements of the matrix.
lda  Int32
The leading dimension of the matrix a.
aNorm  Single
The norm of the matrix.
rcond  Single
On return, an estimate for the reciprocal of the condition number of the matrix.
info  Int32
On return, indicates error conditions.

CholeskyEstimateCondition(MatrixTriangle, Int32, ReadOnlySpan<Single>, Int32, Single, Single, Int32)

Estimates the reciprocal of the condition number of a factored hermitian matrix.
C#
public override void CholeskyEstimateCondition(
	MatrixTriangle storedTriangle,
	int n,
	ReadOnlySpan<float> a,
	int lda,
	float anorm,
	out float rcond,
	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  ReadOnlySpan<Single>
A complex array that contains the elements of the matrix.
lda  Int32
The leading dimension of the matrix a.
anorm  Single
 
rcond  Single
On return, an estimate for the reciprocal of the condition number of the matrix.
info  Int32
On return, indicates error conditions.

See Also