📄 smatrix.h
字号:
#define MAXSIZE 400
#define MAXRC 20
#define OK 1
#define ERROR 0
typedef struct {
int i,j;
int e;
}Tripe;
typedef struct {
Tripe data[MAXSIZE+1];
int rpos[MAXRC+1];
int mu,nu,tu;
}RLSMatrix;
typedef int Status;
Status CreateRLSMatrix(RLSMatrix * sm);
Status AddRLSMatrix(RLSMatrix * sm_a,RLSMatrix * sm_b);
Status SubRLSMatrix(RLSMatrix * sm_a,RLSMatrix * sm_b);
Status MultRLSMatrix(RLSMatrix * sm_a,RLSMatrix * sm_b);
Status PrintRLSMatrix(RLSMatrix * sm);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -