op_inv_proto.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 class op_inv
00024 {
00025 public:
00026
00027
00028
00029 template<typename eT>
00030 inline static void apply(Mat<eT>& out, const Mat<eT>& A);
00031
00032 template<typename T1>
00033 inline static void apply(Mat<typename T1::elem_type>& out, const Op<T1,op_inv>& in);
00034
00035 template<typename T1>
00036 inline static void apply(Mat<typename T1::elem_type>& out, const Op< Op<T1,op_diagmat>, op_inv>& in);
00037
00038
00039
00040 template<typename eT>
00041 inline static void apply_diagvec(Mat<eT>& out, const Mat<eT>& X);
00042
00043 template<typename eT>
00044 inline static void apply(Mat<eT>& out, const Op< Op<Mat<eT>,op_diagmat_vec>, op_inv>& in);
00045
00046 };
00047
00048