|
<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
#include "tlapack/base/utils.hpp"#include "tlapack/blas/asum.hpp"#include "tlapack/blas/iamax.hpp"#include "tlapack/lapack/ladiv.hpp"#include "tlapack/lapack/trevc_protect.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_MATRIX matrix_T_t, TLAPACK_VECTOR vector_v_t, TLAPACK_VECTOR vector_colN_t, enable_if_t< is_real< type_t< vector_colN_t > >, int > = 0, enable_if_t< is_real< type_t< matrix_T_t > >, int > = 0> | |
| void | tlapack::trevc_backsolve_double (const matrix_T_t &T, vector_v_t &v_r, vector_v_t &v_i, const size_type< matrix_T_t > k, const vector_colN_t &colN) |
| Calculate the k-th right eigenvector pair of T using backsubstitution. | |
| template<TLAPACK_MATRIX matrix_T_t, TLAPACK_VECTOR vector_v_t, TLAPACK_VECTOR vector_colN_t, enable_if_t< is_real< type_t< vector_colN_t > >, int > = 0, enable_if_t< is_real< type_t< matrix_T_t > >, int > = 0> | |
| void | tlapack::trevc_backsolve_single (const matrix_T_t &T, vector_v_t &v, const size_type< matrix_T_t > k, const vector_colN_t &colN) |
| Calculate the k-th right eigenvector of T using backsubstitution. | |