matrix.h
来自「做立体视觉时的标定算法」· C头文件 代码 · 共 29 行
H
29 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?