Go to the documentation of this file.00001
00002 #ifndef mbl_matxvec_h
00003 #define mbl_matxvec_h
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <vnl/vnl_fwd.h>
00023
00024 #if 0 // commented out
00025 #include <vcl_vector.h>
00026
00027
00028 void NC_VecXMat(const vnl_vector<double>& V,const vnl_matrix<double>& M,
00029 vnl_matrix<double>& R);
00030 #endif // commented out
00031
00032
00033
00034
00035 void mbl_matxvec_prod_mv(const vnl_matrix<double>& M,
00036 const vnl_vector<double>& V,
00037 vnl_vector<double>& R);
00038
00039
00040
00041
00042
00043 void mbl_matxvec_prod_mv_2(const vnl_matrix<double>& M,
00044 const vnl_vector<double>& V,
00045 vnl_vector<double>& R);
00046
00047 #if 0
00048 void TC_MatXVec(const vnl_matrix<double>& M,
00049 const vnl_vector<double>& V,
00050 vnl_vector<double>& R,
00051 const vcl_vector<int>& index);
00052 #endif // commented out
00053
00054
00055
00056
00057
00058 void mbl_matxvec_prod_vm(const vnl_vector<double>& V,
00059 const vnl_matrix<double>& M,
00060 vnl_vector<double>& R);
00061
00062
00063
00064
00065
00066 void mbl_matxvec_add_prod_vm(const vnl_vector<double>& V,
00067 const vnl_matrix<double>& M,
00068 vnl_vector<double>& R);
00069
00070 #if 0 // commented out
00071
00072
00073
00074 void TC_ProductMD(vnl_matrix<double>& MD, const vnl_matrix<double>& M, const vnl_vector<double>& d);
00075
00076
00077 void TC_ProductDM(vnl_matrix<double>& DM, const vnl_matrix<double>& M, const vnl_vector<double>& d);
00078 #endif // commented out
00079
00080 #endif // mbl_matxvec_h