#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>
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::orgqr (A &a, Tau &tau) |
template<typename A , typename Tau , typename Work > | |
int | boost::numeric::bindings::lapack::orgqr (A &a, Tau &tau, detail::workspace1< Work > workspace) |
template<typename A , typename Tau > | |
int | boost::numeric::bindings::lapack::orgqr (A &a, Tau &tau, minimal_workspace) |
template<typename A , typename Tau > | |
int | boost::numeric::bindings::lapack::orgqr (A &a, Tau &tau, optimal_workspace) |
template<typename A , typename Tau , typename Work > | |
int | boost::numeric::bindings::lapack::orgqr (A &a, Tau &tau, Work &work) |
void | boost::numeric::bindings::lapack::detail::orgqr (int const m, int const n, int const k, 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::orgqr (int const m, int const n, int const k, double *a, int const lda, double *tau, double *work, int const lwork, int &info) |
void | boost::numeric::bindings::lapack::detail::orgqr (int const m, int const n, int const k, float *a, int const lda, float *tau, float *work, int const lwork, int &info) |
Generates an M-by-N real matrix Q with orthonormal columns, which is defined as the first N columns of a product of K elementary reflectors of order M Q = H(1) H(2) . |