#include <boost/numeric/bindings/traits/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/static_assert.hpp>
#include <boost/type_traits.hpp>
#include <cassert>
Go to the source code of this file.
Namespaces | |
namespace | boost |
namespace | boost::numeric |
namespace | boost::numeric::bindings |
namespace | boost::numeric::bindings::lapack |
namespace | boost::numeric::bindings::lapack::detail |
Functions | |
template<typename A , typename W , typename Work > | |
int | boost::numeric::bindings::lapack::syev (char jobz, char uplo, A &a, W &w, detail::workspace1< Work > workspace) |
template<typename A , typename W > | |
int | boost::numeric::bindings::lapack::syev (char jobz, char uplo, A &a, W &w, minimal_workspace) |
template<typename A , typename W > | |
int | boost::numeric::bindings::lapack::syev (char jobz, char uplo, A &a, W &w, optimal_workspace) |
template<typename A , typename W , typename Work > | |
int | boost::numeric::bindings::lapack::detail::syev (char jobz, char uplo, A &a, W &w, Work &work) |
void | boost::numeric::bindings::lapack::detail::syev (char const jobz, char const uplo, int const n, double *a, int const lda, double *w, double *work, int const lwork, int &info) |
void | boost::numeric::bindings::lapack::detail::syev (char const jobz, char const uplo, int const n, float *a, int const lda, float *w, float *work, int const lwork, int &info) |