Partially revert "const-correct cwt.c:cwavelet"

This reverts commit 0b5777fc4a.

> In cwt.h and cwt.c , s0 and dj are needed for reconstruction.
> Both of these variables may be needed if we are to add more wavelets.
This commit is contained in:
Ivan Krylov
2018-12-14 13:04:07 +03:00
parent 0cbcb8b7d5
commit fbbebc90f9
3 changed files with 6 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
extern "C" {
#endif
void cwavelet(const double *y, int N, double dt, int mother, double param, int jtot, int npad,
void cwavelet(const double *y, int N, double dt, int mother, double param, double s0, double dj, int jtot, int npad,
double *wave, double *scale, double *period, double *coi);
void psi0(int mother, double param, double *val, int *real);