✎
编程开发网
首页
C语言
C++
面试
Linux
函数
Windows
数据库
下载
搜索
当前位置:
首页
->
基础
->
c++编程基础
矩阵计算库 (二)
2014-11-24 01:21:32
·
作者:
·
浏览:
10
标签:
矩阵
计算
- (const Mat
& m1,
const Mat
& m2);
template
Mat
operator* (const Mat
& m1,
const Mat
& m2);template
Mat
operator* (const Mat
& m, const T& el);t
emplate
Mat
operator* (const T& el, const Mat
& m);
template
Mat
operator/ (const Mat
& m1, const Mat
& m2);
template
Mat
operator/ (const Mat
& m, const T& el);
template
Mat
operator/ (const T& el, const Mat
& m);
template
bool operator== (const Mat
& m1,
const Mat
& m2);
template
bool operator!= (const Mat
& m1, const Mat
& m2);
/////////////// Non-member functions//template
Mat
mpow (const Mat
& m, size_t n);
template
Mat
mabs (const Mat
& m);
template
Mat
mfloor (const Mat
& m);
template
Mat
mceil (const Mat
& m);
template
void mswap (Mat
& x, Mat
& y);
//streamtemplate
istream& operator>> (istream& is,
Mat
& m);template
ostream& operator<< (ostream &os,
const Mat
& m);//epsilontemplate
T epsilon (const T& v);
首页
上一页
1
2
下一页
尾页
2
/2/2