lanhf#
Functions
-
f32 clanhf(const char *norm, const char *transr, const char *uplo, const INT n, const c64 *restrict A, f32 *restrict work)#
CLANHF returns the value of the one norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a complex Hermitian matrix A in RFP format.
Parameters
innormSpecifies the value to be returned in CLANHF as described above. = ‘M’ or ‘m’: max(abs(A(i,j))) = ‘1’, ‘O’ or ‘o’: norm1(A) = ‘I’ or ‘i’: normI(A) = ‘F’, ‘f’, ‘E’ or ‘e’: normF(A)
intransr= ‘N’: RFP format is Normal; = ‘C’: RFP format is Conjugate-transposed.
inuplo= ‘U’: RFP A came from an upper triangular matrix; = ‘L’: RFP A came from a lower triangular matrix.
innThe order of the matrix A. n >= 0. When n = 0, CLANHF is set to zero.
inAComplex*16 array, dimension ( n*(n+1)/2 ); On entry, the matrix A in RFP Format.
outworkSingle precision array, dimension (MAX(1,LWORK)), where LWORK >= n when NORM = ‘I’ or ‘1’ or ‘O’; otherwise, WORK is not referenced.
f32 clanhf(
const char* norm,
const char* transr,
const char* uplo,
const INT n,
const c64* restrict A,
f32* restrict work
);
Functions
-
f64 zlanhf(const char *norm, const char *transr, const char *uplo, const INT n, const c128 *restrict A, f64 *restrict work)#
ZLANHF returns the value of the one norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a complex Hermitian matrix A in RFP format.
Parameters
innormSpecifies the value to be returned in ZLANHF as described above. = ‘M’ or ‘m’: max(abs(A(i,j))) = ‘1’, ‘O’ or ‘o’: norm1(A) = ‘I’ or ‘i’: normI(A) = ‘F’, ‘f’, ‘E’ or ‘e’: normF(A)
intransr= ‘N’: RFP format is Normal; = ‘C’: RFP format is Conjugate-transposed.
inuplo= ‘U’: RFP A came from an upper triangular matrix; = ‘L’: RFP A came from a lower triangular matrix.
innThe order of the matrix A. n >= 0. When n = 0, ZLANHF is set to zero.
inAComplex*16 array, dimension ( n*(n+1)/2 ); On entry, the matrix A in RFP Format.
outworkDouble precision array, dimension (MAX(1,LWORK)), where LWORK >= n when NORM = ‘I’ or ‘1’ or ‘O’; otherwise, WORK is not referenced.
f64 zlanhf(
const char* norm,
const char* transr,
const char* uplo,
const INT n,
const c128* restrict A,
f64* restrict work
);