extr.h

来自「经验模态分解(EMD)的Matlab程序包」· C头文件 代码 · 共 29 行

H
29
字号
/** 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 EXTR_H
#define EXTR_H

/* structure used to store the local extrema of the signal */
typedef struct {
  int n_min;
  int n_max;
  double *x_min;
  double *y_min;
  double *x_max;
  double *y_max;
} extrema_t;

extrema_t init_extr(int);
void extr(double *,double *,int,extrema_t *);
void free_extr(extrema_t);
void boundary_conditions(double *,double *,int,extrema_t *);

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?