config.h
来自「Matlab时频分析工具箱,希望能对大家有所帮助啊」· C头文件 代码 · 共 34 行
H
34 行
/* This file should contain the configuration parameters necessary for the Mex-compilation. */#ifndef CONFIG_H#define CONFIG_H 1#define HAVE_BLAS 1#define HAVE_LAPACK 1#include "stddef.h"#include "mex.h"#include "fftw3.h"#define FFTW_OPTITYPE FFTW_ESTIMATEtypedef fftw_complex ltfat_complex; void* ltfat_malloc (size_t n){ return mxMalloc(n);}void ltfat_free(void *ptr){ mxFree(ptr);}/* Define to a macro mangling the given C identifier (in lower and upper case), which must not contain underscores, for linking with Fortran. */#define F77_FUNC(name,NAME) name ## _#endif /* CONFIG_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?