31 template <
typename AT,
typename LT,
typename UT,
typename PT>
32 static void apply(
const AT& A, LT& L, UT& U, PT& P) {
33 etl::impl::standard::lu(A, L, U, P);
47 template <
typename AT,
typename QT,
typename RT>
48 static void apply(AT& A, QT& Q, RT& R) {
49 etl::impl::standard::qr(A, Q, R);
Functor for euclidean norm.
Definition: decomposition.hpp:23
Standard implementation of the decompositions.
static void apply(AT &A, QT &Q, RT &R)
Apply the functor to A,Q,R.
Definition: decomposition.hpp:48
Definition: expression_builder.hpp:699
static void apply(const AT &A, LT &L, UT &U, PT &P)
Apply the functor to A, L, U, P.
Definition: decomposition.hpp:32
Functor for QR decomposition.
Definition: decomposition.hpp:40