Managed Lapack Of Single.Hermitian Estimate Condition 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
Hermitian | Estimates the reciprocal of the condition number of a complex Hermitian matrix A using the factorization A = U*D*UH or A = L*D*LH computed by ZHETRF. |
Hermitian | Estimates the reciprocal of the condition number of a complex Hermitian matrix A using the factorization A = U*D*UH or A = L*D*LH computed by ZHETRF. |
Hermitian | Estimates the reciprocal of the condition number of a complex Hermitian matrix A using the factorization A = U*D*UH or A = L*D*LH computed by ZHETRF. |
HermitianEstimateCondition(MatrixTriangle, Int32, ReadOnlySpan<Complex<Single>>, Int32, ReadOnlySpan<Int32>, Single, Single, Int32)
Estimates the reciprocal of the condition number of a complex Hermitian matrix A using the factorization A = U*D*UH or A = L*D*LH computed by ZHETRF.
public override void HermitianEstimateCondition(
MatrixTriangle storedTriangle,
int n,
ReadOnlySpan<Complex<float>> a,
int lda,
ReadOnlySpan<int> ipiv,
float anorm,
out float rcond,
out int info
)
Parameters
- storedTriangle MatrixTriangle
- n Int32
The order of the matrix A. N >= 0.
- a ReadOnlySpan<Complex<Single>>
A is TComplex array, dimension (LDA,N) The block diagonal matrix D and the multipliers used to obtain the factor U or L as computed by ZHETRF.
- lda Int32
The leading dimension of the array A. LDA >= max(1,N).
- ipiv ReadOnlySpan<Int32>
Dimension (N) Details of the interchanges and the block structure of D as determined by ZHETRF.
- anorm Single
ANORM is TReal The 1-norm of the original matrix A.
- rcond Single
RCOND is TReal The reciprocal of the condition number of the matrix A, computed as RCOND = 1/(ANORM * AINVNM), where AINVNM is an estimate of the 1-norm of inv(A) computed in this routine.
- info Int32
= 0: successful exit < 0: if INFO = -i, the i-th argument had an illegal value
Remarks
An estimate is obtained for norm(inv(A)), and the reciprocal of the condition number is computed as RCOND = 1 / (ANORM * norm(inv(A))).