lansf#
Functions
-
f32 slansf(const char *norm, const char *transr, const char *uplo, const INT n, const f32 *restrict A, f32 *restrict work)#
SLANSF returns the value of the one norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a real symmetric matrix A in RFP format.
Parameters
innormSpecifies the value to be returned in SLANSF 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; = ‘T’: RFP format is Transpose.
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, SLANSF is set to zero.
inADouble precision array, dimension ( n*(n+1)/2 ); On entry, the upper (if UPLO = ‘U’) or lower (if UPLO = ‘L’) part of the symmetric matrix A stored 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.
f32 slansf(
const char* norm,
const char* transr,
const char* uplo,
const INT n,
const f32* restrict A,
f32* restrict work
);
Functions
-
f64 dlansf(const char *norm, const char *transr, const char *uplo, const INT n, const f64 *restrict A, f64 *restrict work)#
DLANSF returns the value of the one norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a real symmetric matrix A in RFP format.
Parameters
innormSpecifies the value to be returned in DLANSF 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; = ‘T’: RFP format is Transpose.
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, DLANSF is set to zero.
inADouble precision array, dimension ( n*(n+1)/2 ); On entry, the upper (if UPLO = ‘U’) or lower (if UPLO = ‘L’) part of the symmetric matrix A stored 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 dlansf(
const char* norm,
const char* transr,
const char* uplo,
const INT n,
const f64* restrict A,
f64* restrict work
);