程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> matrix-請問調用時候參數寫什麼?求助大神!我是個小白!

matrix-請問調用時候參數寫什麼?求助大神!我是個小白!

編輯:編程綜合問答
請問調用時候參數寫什麼?求助大神!我是個小白!

class Matrix:public MATRIX
{
public:
Matrix():MATRIX(){}
Matrix( int c, int r ):MATRIX(c,r){}
Matrix( const Matrix& m){ *this = m; }

const Matrix& operator+=( const Matrix& m );
const Matrix& operator-=( const Matrix& m );
const Matrix& operator*=( const Matrix& m );
const Matrix& operator/=( const Matrix& m );

};

bool operator==( const Matrix& lhs, const Matrix& rhs ); // 重載操作符==
bool operator!=( const Matrix& lhs, const Matrix& rhs ); // 重載操作符!=
const Matrix operator+( const Matrix& lhs, const Matrix& rhs ); // 重載操作符+
const Matrix operator-( const Matrix& lhs, const Matrix& rhs ); // 重載操作符-
const Matrix operator*( const Matrix& lhs, const Matrix& rhs ); // 重載操作符*
const Matrix operator/( const Matrix& lhs, const Matrix& rhs ); // 重載操作符/
const double det( const Matrix& m ); // 計算行列式
const double det( const Matrix& m, int start, int end ); // 計算子矩陣行列式
const Matrix abs( const Matrix& m ); // 計算所有元素的絕對值
const double max( const Matrix& m ); // 所有元素的最大值
const double max( const Matrix& m, int& row, int& col); // 所有元素中的最大值及其下標
const double min( const Matrix& m ); // 所有元素的最小值
const double min( const Matrix& m, int& row, int& col); // 所有元素的最小值及其下標
const Matrix trans( const Matrix& m ); // 返回轉置矩陣
const Matrix submatrix(const Matrix& m,int rb,int re,int cb,int ce); // 返回子矩陣
const Matrix inverse( const Matrix& m ); // 計算逆矩陣
const Matrix LU( const Matrix& m ); // 計算方陣的LU分解
const Matrix readMatrix( istream& in = std::cin ); // 從指定輸入流讀入矩陣
const Matrix readMatrix( string file ); // 從文本文件讀入矩陣
const Matrix loadMatrix( string file ); // 從二進制文件讀取矩陣
void printMatrix( const Matrix& m, ostream& out = std::cout ); // 從指定輸出流打印矩陣
void printMatrix( const Matrix& m, string file); // 將矩陣輸出到文本文件
void saveMatrix( const Matrix& m, string file); // 將矩陣保存為二進制文件

#endif
這是.h文件我想在另一個.cpp文件中調用const Matrix readMatrix( istream& in = std::cin ); 這個函數,不知道怎麼寫?麻煩大神幫我一下,我真是個小白。。

最佳回答:


試試:

 void main()
{
    Matrix a;
    a=readMatrix();
}

u010737194
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved