mirror of
https://github.com/simon987/wavelib.git
synced 2025-04-10 14:06:46 +00:00
const-correct cwt.c:cwavelet
This commit is contained in:
parent
4e34b8926b
commit
0b5777fc4a
@ -142,7 +142,7 @@ static void wave_function(int nk, double dt,int mother, double param,double scal
|
||||
}
|
||||
}
|
||||
|
||||
void cwavelet(double *y, int N, double dt, int mother, double param, double s0, double dj, int jtot, int npad,
|
||||
void cwavelet(const double *y, int N, double dt, int mother, double param, int jtot, int npad,
|
||||
double *wave, double *scale, double *period, double *coi) {
|
||||
|
||||
int i, j, k, iter;
|
||||
|
@ -7,7 +7,7 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void cwavelet(double *y, int N, double dt, int mother, double param, double s0, double dj, int jtot, int npad,
|
||||
void cwavelet(const double *y, int N, double dt, int mother, double param, int jtot, int npad,
|
||||
double *wave, double *scale, double *period, double *coi);
|
||||
|
||||
void psi0(int mother, double param, double *val, int *real);
|
||||
|
Loading…
x
Reference in New Issue
Block a user