mem_loc.h
来自「耗散粒子群(DPSO)优化算法C程序及其测试实例」· C头文件 代码 · 共 18 行
H
18 行
#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 + =
减小字号Ctrl + -
显示快捷键?