📄 config.h
字号:
/* This file should contain the configuration parameters necessary for the Oct-compilation. */#ifndef CONFIG_H#define CONFIG_H 1#define HAVE_BLAS 1#define HAVE_LAPACK 1#include "fftw3.h"#define FFTW_OPTITYPE FFTW_ESTIMATEtypedef fftw_complex ltfat_complex; void* ltfat_malloc (size_t n){ return fftw_malloc(n);}void ltfat_free(void *ptr){ fftw_free(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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -