📄 matrix.h
字号:
/* matrix.h -- define types for matrices using Iliffe vectors * ************************************************************* * HISTORY * * 02-Apr-95 Reg Willson (rgwillson@mmm.com) at 3M St. Paul, MN * Rewrite memory allocation to avoid memory alignment problems * on some machines. */typedef struct { int lb1, ub1, lb2, ub2; char *mat_sto; double **el;} dmat;void print_mat ();dmat newdmat ();int matmul ();int matcopy ();int transpose ();double matinvert ();int solve_system ();#define freemat(m) free((m).mat_sto) ; free((m).el)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -