op_pinv_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_pinv
00025 {
00026 public:
00027
00028 template<typename eT> inline static void direct_pinv(Mat<eT>& out, const Mat<eT>& X, eT tol);
00029 template<typename eT> inline static void direct_pinv(Mat< std::complex<eT> >& out, const Mat< std::complex<eT> >& X, eT tol);
00030
00031 template<typename T1> inline static void apply(Mat<typename T1::pod_type>& out, const Op<T1,op_pinv>& in);
00032 template<typename T1> inline static void apply(Mat< std::complex<typename T1::pod_type> >& out, const Op<T1,op_pinv>& in);
00033 };
00034
00035
00036
00037