//! More...
Functions | |
template<typename T1 , typename T2 > | |
arma_inline arma_warn_unused T1::elem_type | dot (const Base< typename T1::elem_type, T1 > &A, const Base< typename T1::elem_type, T2 > &B) |
template<typename T1 , typename T2 > | |
arma_inline arma_warn_unused T1::elem_type | norm_dot (const Base< typename T1::elem_type, T1 > &A, const Base< typename T1::elem_type, T2 > &B, const typename arma_blas_type_only< typename T1::elem_type >::result *junk=0) |
//!
arma_inline arma_warn_unused T1::elem_type dot | ( | const Base< typename T1::elem_type, T1 > & | A, | |
const Base< typename T1::elem_type, T2 > & | B | |||
) |
Definition at line 26 of file fn_dot.hpp.
References op_dot::apply().
{ arma_extra_debug_sigprint(); return op_dot::apply(A,B); }
arma_inline arma_warn_unused T1::elem_type norm_dot | ( | const Base< typename T1::elem_type, T1 > & | A, | |
const Base< typename T1::elem_type, T2 > & | B, | |||
const typename arma_blas_type_only< typename T1::elem_type >::result * | junk = 0 | |||
) |
Definition at line 43 of file fn_dot.hpp.
References op_norm_dot::apply().
{ arma_extra_debug_sigprint(); return op_norm_dot::apply(A,B); }