|
<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
#include "tlapack/base/utils.hpp"
Go to the source code of this file.
Namespaces | |
| namespace | tlapack |
| Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ). | |
Functions | |
| template<TLAPACK_UPLO uplo_t, TLAPACK_DIAG diag_t, TLAPACK_MATRIX matrix_t> | |
| auto | tlapack::infnorm_triangular_colmajor (uplo_t uplo, diag_t diag, const matrix_t &A) |
| Calculates the infinity norm of a column-major triangular matrix. | |
| template<TLAPACK_UPLO uplo_t, TLAPACK_DIAG diag_t, TLAPACK_MATRIX matrix_t, TLAPACK_WORKSPACE work_t> | |
| auto | tlapack::infnorm_triangular_colmajor_work (uplo_t uplo, diag_t diag, const matrix_t &A, work_t &work) |
| Calculates the infinity norm of a column-major triangular matrix. Workspace is provided as an argument. | |
| template<class T , TLAPACK_UPLO uplo_t, TLAPACK_DIAG diag_t, TLAPACK_MATRIX matrix_t> | |
| constexpr WorkInfo | tlapack::infnorm_triangular_colmajor_worksize (uplo_t uplo, diag_t diag, const matrix_t &A) |
| Worspace query of infnorm_triangular_colmajor() | |