#include <boost/numeric/bindings/traits/type.hpp>
#include <boost/numeric/bindings/traits/traits.hpp>
#include <boost/numeric/bindings/traits/type_traits.hpp>
#include <boost/numeric/bindings/lapack/lapack.h>
#include <boost/numeric/bindings/lapack/workspace.hpp>
#include <boost/numeric/bindings/traits/detail/array.hpp>
#include <boost/numeric/bindings/traits/detail/utils.hpp>
#include <boost/static_assert.hpp>
#include <boost/type_traits.hpp>
Go to the source code of this file.
Classes | |
struct | boost::numeric::bindings::lapack::detail::Hbev< N > |
struct | boost::numeric::bindings::lapack::detail::Hbev< 1 > |
Handling of workspace in the case of one workarray. More... | |
struct | boost::numeric::bindings::lapack::detail::Hbev< 2 > |
Handling of workspace in the case of two workarrays. More... | |
Namespaces | |
namespace | boost |
namespace | boost::numeric |
namespace | boost::numeric::bindings |
namespace | boost::numeric::bindings::lapack |
namespace | boost::numeric::bindings::lapack::detail |
Functions | |
template<typename AB , typename W , typename Z , typename Work > | |
int | boost::numeric::bindings::lapack::hbev (AB &ab, W &w, Z &z, Work work) |
Compute eigendecomposition with eigenvectors. | |
template<typename AB , typename W , typename Work > | |
int | boost::numeric::bindings::lapack::hbev (AB &ab, W &w, Work work) |
Compute eigendecomposition without eigenvectors. | |
template<typename AB , typename Z , typename W , typename Work > | |
int | boost::numeric::bindings::lapack::detail::hbev (char const jobz, AB &ab, W &w, Z &z, Work work) |
Compute eigendecomposition of the banded Hermitian matrix ab. | |
void | boost::numeric::bindings::lapack::detail::hbev (char const jobz, char const uplo, int const n, int const kd, traits::complex_d *ab, int const ldab, double *w, traits::complex_d *z, int const ldz, traits::complex_d *work, double *rwork, int &info) |
void | boost::numeric::bindings::lapack::detail::hbev (char const jobz, char const uplo, int const n, int const kd, traits::complex_f *ab, int const ldab, float *w, traits::complex_f *z, int const ldz, traits::complex_f *work, float *rwork, int &info) |
void | boost::numeric::bindings::lapack::detail::hbev (char const jobz, char const uplo, int const n, int const kd, double *ab, int const ldab, double *w, double *z, int const ldz, double *work, int &info) |
void | boost::numeric::bindings::lapack::detail::hbev (char const jobz, char const uplo, int const n, int const kd, float *ab, int const ldab, float *w, float *z, int const ldz, float *work, int &info) |