mirror of
https://github.com/simon987/wavelib.git
synced 2025-04-20 18:46:45 +00:00
25 lines
457 B
C
Executable File
25 lines
457 B
C
Executable File
#ifndef WAVEFUNC_H_
|
|
#define WAVEFUNC_H_
|
|
|
|
#include "cwtmath.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void meyer(int N,double lb,double ub,double *phi,double *psi,double *tgrid);
|
|
|
|
void gauss(int N,int p,double lb,double ub,double *psi,double *t);
|
|
|
|
void mexhat(int N,double lb,double ub,double *psi,double *t);
|
|
|
|
void morlet(int N,double lb,double ub,double *psi,double *t);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* WAVEFUNC_H_ */
|