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();
}