📄 mem_loc.h
字号:
#ifndef __MEM_LOC_H__
#define __MEM_LOC_H__
#include "define_t.h"
extern void IVectorAllocate(IVECTOR *ivector, int nCols);
extern void IMatrixFree(IMATRIX imatrix, int nRows);
extern void IMatrixAllocate(IMATRIX *ipmatrix, int nRows, int nCols);
extern void IAllocateCols(P_INT imatrix[], int nRows, int nCols);
extern void FVectorAllocate(FVECTOR *fvector, int nCols);
extern void FMatrixFree(FMATRIX fmatrix, int nRows);
extern void FMatrixAllocate(FMATRIX *fpmatrix, int nRows, int nCols);
extern void FAllocateCols(P_FLOAT fmatrix[], int nRows, int nCols);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -