Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00016
00019
00020 class op_dot
00021 {
00022 public:
00023
00024 template<typename eT>
00025 arma_hot arma_pure inline static eT direct_dot_arma(const uword n_elem, const eT* const A, const eT* const B);
00026
00027 template<typename eT>
00028 arma_hot arma_pure inline static typename arma_float_only<eT>::result
00029 direct_dot(const uword n_elem, const eT* const A, const eT* const B);
00030
00031 template<typename eT>
00032 arma_hot arma_pure inline static typename arma_cx_only<eT>::result
00033 direct_dot(const uword n_elem, const eT* const A, const eT* const B);
00034
00035 template<typename eT>
00036 arma_hot arma_pure inline static typename arma_integral_only<eT>::result
00037 direct_dot(const uword n_elem, const eT* const A, const eT* const B);
00038
00039
00040 template<typename eT>
00041 arma_hot arma_pure inline static eT direct_dot(const uword n_elem, const eT* const A, const eT* const B, const eT* C);
00042
00043 template<typename T1, typename T2>
00044 arma_hot arma_inline static typename T1::elem_type apply(const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y);
00045
00046 template<typename T1, typename T2>
00047 arma_hot inline static typename T1::elem_type apply_unwrap(const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y);
00048
00049 template<typename T1, typename T2>
00050 arma_hot inline static typename T1::elem_type apply_proxy (const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y);
00051 };
00052
00053
00054
00057
00058 class op_norm_dot
00059 {
00060 public:
00061
00062 template<typename T1, typename T2>
00063 arma_hot inline static typename T1::elem_type apply (const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y);
00064
00065 template<typename T1, typename T2>
00066 arma_hot inline static typename T1::elem_type apply_unwrap(const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y);
00067 };
00068
00069
00070
00071 class op_cdot
00072 {
00073 public:
00074
00075 template<typename T1, typename T2>
00076 arma_hot arma_inline static typename T1::elem_type apply(const Base<typename T1::elem_type,T1>& X, const Base<typename T1::elem_type,T2>& Y);
00077 };
00078
00079
00080