📄 matrix.h.bak
字号:
class Matrix
{
private:
float *list;
int nElem;
public:
Matrix();
int Elem(void);
int Elem(float);
void Print(void);
void Destroy(void);
float GetElem(int i);
float hang();
void ni();
friend Matrix operator+(Matrix a,Matrix b);
friend Matrix operator-(Matrix a,Matrix b);
friend Matrix operator*(Matrix a,Matrix b);
friend Matrix operator*(float k);
float & operator[](int index);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -