op_eps_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
00024 class op_eps
00025 {
00026 public:
00027
00028 template<typename eT> inline static eT direct_eps(const eT x);
00029 template<typename T> inline static T direct_eps(const std::complex<T>& x);
00030
00031 template<typename eT> inline static void direct_eps(Mat<eT>& out, const Mat< eT >& A);
00032 template<typename T> inline static void direct_eps(Mat< T>& out, const Mat< std::complex<T> >& A);
00033
00034 template<typename T1> inline static void apply(Mat<typename T1::elem_type>& out, const Op<T1,op_eps>& in);
00035 };
00036
00037
00038
00039