文件名称:C++实现矩阵算法实现
文件大小:5KB
文件格式:CPP
更新时间:2016-05-10 06:00:20
C++ 矩阵运算
C++实现矩 void matrix::maini(int s,int t,double w) { a[s*col+t]=w; } void matrix::roco(int ro,int co) { row=ro; col=co; } double matrix::maout(int i,int j) { return a[i*col+j]; } 阵算法实现。