lanht#
Functions
-
f32 clanht(const char *norm, const INT n, const f32 *restrict D, const c64 *restrict E)#
CLANHT 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 tridiagonal matrix A.
Parameters
innormSpecifies the value to be returned: = ‘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)
innThe order of the matrix A. n >= 0. When n = 0, CLANHT is set to zero.
inDSingle precision array, dimension (n). The diagonal elements of A.
inEComplex*16 array, dimension (n-1). The (n-1) sub-diagonal or super-diagonal elements of A.
f32 clanht(
const char* norm,
const INT n,
const f32* restrict D,
const c64* restrict E
);
Functions
-
f64 zlanht(const char *norm, const INT n, const f64 *restrict D, const c128 *restrict E)#
ZLANHT 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 tridiagonal matrix A.
Parameters
innormSpecifies the value to be returned: = ‘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)
innThe order of the matrix A. n >= 0. When n = 0, ZLANHT is set to zero.
inDDouble precision array, dimension (n). The diagonal elements of A.
inEComplex*16 array, dimension (n-1). The (n-1) sub-diagonal or super-diagonal elements of A.
f64 zlanht(
const char* norm,
const INT n,
const f64* restrict D,
const c128* restrict E
);