#include <complex>
#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 Tau > | |
int | boost::numeric::bindings::lapack::geqrf (A &a, Tau &tau) |
template<typename A , typename Tau , typename Work > | |
int | boost::numeric::bindings::lapack::geqrf (A &a, Tau &tau, detail::workspace1< Work > workspace) |
template<typename A , typename Tau > | |
int | boost::numeric::bindings::lapack::geqrf (A &a, Tau &tau, minimal_workspace) |
template<typename A , typename Tau > | |
int | boost::numeric::bindings::lapack::geqrf (A &a, Tau &tau, optimal_workspace) |
template<typename A , typename Tau , typename Work > | |
int | boost::numeric::bindings::lapack::geqrf (A &a, Tau &tau, Work &work) |
void | boost::numeric::bindings::lapack::detail::geqrf (int const m, int const n, traits::complex_f *a, int const lda, traits::complex_f *tau, traits::complex_f *work, int const lwork, int &info) |
void | boost::numeric::bindings::lapack::detail::geqrf (int const m, int const n, double *a, int const lda, double *tau, double *work, int const lwork, int &info) |
void | boost::numeric::bindings::lapack::detail::geqrf (int const m, int const n, float *a, int const lda, float *tau, float *work, int const lwork, int &info) |