⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 matrix_xoperator_mm.hxx

📁 高效的c++科学算法库
💻 HXX
字号:
// ---------------------------------------------------------- -*- c++ -*-// Expression Operator Matrix// ----------------------------------------------------------------------// file     = _filename_// name     = _name_// operator = _operator_// ----------------------------------------------------------------------template <typename T1_value,          typename T1_structure,          typename T1_storage,          typename T2_value,          typename T2_structure,          typename T2_storage> inline MatrixExpr< _name_ <Matrix<T1_value, T1_structure, T1_storage>,                           Matrix<T2_value, T2_structure, T2_storage> > > _operator_ (Matrix<T1_value, T1_structure, T1_storage> SL_TEXPR_ARG m1,            Matrix<T2_value, T2_structure, T2_storage> SL_TEXPR_ARG m2) {             typedef Matrix<T1_value, T1_structure, T1_storage> expr_t1;  typedef Matrix<T2_value, T2_structure, T2_storage> expr_t2;  typedef _name_ <expr_t1, expr_t2> expr_t;                           return MatrixExpr<expr_t> ( expr_t(m1, m2) );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -