lantp#
Functions
-
f32 slantp(const char *norm, const char *uplo, const char *diag, const INT n, const f32 *restrict AP, f32 *restrict work)#
SLANTP returns the value of the one norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a triangular matrix A, supplied in packed form.
Parameters
innorm= ‘M’: max(abs(A(i,j))) = ‘1’, ‘O’: norm1(A) (maximum column sum) = ‘I’: normI(A) (maximum row sum) = ‘F’, ‘E’: normF(A) (Frobenius norm)
inuplo= ‘U’: Upper triangular = ‘L’: Lower triangular
indiag= ‘N’: Non-unit triangular = ‘U’: Unit triangular
innThe order of the matrix A. n >= 0.
inAPThe packed triangular matrix A. Array of dimension (n*(n+1)/2).
outworkWorkspace array of dimension (n) when norm = ‘I’.
f32 slantp(
const char* norm,
const char* uplo,
const char* diag,
const INT n,
const f32* restrict AP,
f32* restrict work
);
Functions
-
f64 dlantp(const char *norm, const char *uplo, const char *diag, const INT n, const f64 *restrict AP, f64 *restrict work)#
DLANTP returns the value of the one norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a triangular matrix A, supplied in packed form.
Parameters
innorm= ‘M’: max(abs(A(i,j))) = ‘1’, ‘O’: norm1(A) (maximum column sum) = ‘I’: normI(A) (maximum row sum) = ‘F’, ‘E’: normF(A) (Frobenius norm)
inuplo= ‘U’: Upper triangular = ‘L’: Lower triangular
indiag= ‘N’: Non-unit triangular = ‘U’: Unit triangular
innThe order of the matrix A. n >= 0.
inAPThe packed triangular matrix A. Array of dimension (n*(n+1)/2).
outworkWorkspace array of dimension (n) when norm = ‘I’.
f64 dlantp(
const char* norm,
const char* uplo,
const char* diag,
const INT n,
const f64* restrict AP,
f64* restrict work
);
Functions
-
f32 clantp(const char *norm, const char *uplo, const char *diag, const INT n, const c64 *restrict AP, f32 *restrict work)#
CLANTP returns the value of the one norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a triangular matrix A, supplied in packed form.
Parameters
innorm= ‘M’: max(abs(A(i,j))) = ‘1’, ‘O’: norm1(A) (maximum column sum) = ‘I’: normI(A) (maximum row sum) = ‘F’, ‘E’: normF(A) (Frobenius norm)
inuplo= ‘U’: Upper triangular = ‘L’: Lower triangular
indiag= ‘N’: Non-unit triangular = ‘U’: Unit triangular
innThe order of the matrix A. n >= 0.
inAPThe packed triangular matrix A. Array of dimension (n*(n+1)/2).
outworkWorkspace array of dimension (n) when norm = ‘I’.
f32 clantp(
const char* norm,
const char* uplo,
const char* diag,
const INT n,
const c64* restrict AP,
f32* restrict work
);
Functions
-
f64 zlantp(const char *norm, const char *uplo, const char *diag, const INT n, const c128 *restrict AP, f64 *restrict work)#
ZLANTP returns the value of the one norm, or the Frobenius norm, or the infinity norm, or the element of largest absolute value of a triangular matrix A, supplied in packed form.
Parameters
innorm= ‘M’: max(abs(A(i,j))) = ‘1’, ‘O’: norm1(A) (maximum column sum) = ‘I’: normI(A) (maximum row sum) = ‘F’, ‘E’: normF(A) (Frobenius norm)
inuplo= ‘U’: Upper triangular = ‘L’: Lower triangular
indiag= ‘N’: Non-unit triangular = ‘U’: Unit triangular
innThe order of the matrix A. n >= 0.
inAPThe packed triangular matrix A. Array of dimension (n*(n+1)/2).
outworkWorkspace array of dimension (n) when norm = ‘I’.
f64 zlantp(
const char* norm,
const char* uplo,
const char* diag,
const INT n,
const c128* restrict AP,
f64* restrict work
);