emd_complex.h
来自「经验模式分解的工具箱和相应的应用示例!希望对大家有用!」· C头文件 代码 · 共 23 行
H
23 行
/** G. Rilling, last modification: 3.2007* gabriel.rilling@ens-lyon.fr** code based on a student project by T. Boustane and G. Quellec, 11.03.2004* supervised by P. Chainais (ISIMA - LIMOS - Universite Blaise Pascal - Clermont II* email : pchainai@isima.fr).*/#ifndef EMD_COMPLEX_H#define EMD_COMPLEX_Htypedef struct { double r; double i;} complex_data_t;double CREAL(complex_data_t);double CIMAG(complex_data_t);double CABS(complex_data_t);double crealeiphi(double,complex_data_t);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?