?? clocal_mean2.h
字號(hào):
/** 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 CLOCAL_MEAN2_H
#define CLOCAL_MEAN2_H
/* structure used to store envelopes and temporary data */
typedef struct {
int n;
double *e_min;
double *e_max;
double *tmp1;
double *tmp2;
} envelope_t;
envelope_t init_local_mean(int);
int mean_and_amplitude(double *,COMPLEX_T *,COMPLEX_T *,double *,int,int,extrema_t *,envelope_t *);
int mean(double *,COMPLEX_T *,COMPLEX_T *,int,int,extrema_t *,envelope_t *);
void free_local_mean(envelope_t);
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -