python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
how to change dilation and translation coefficient in pywt
I am new to pywt and wavelet analysis.
I am now facing several problems, and I hope someone can help me with them.
First, I would like to change dilation (D) and translation (x) in my_wavelet, but I ...
Grace Wang
Votes: 0
Answers: 1
Converting CWT from MatLab to Python
I am working on converting the following MatLab code into Python:
function [pos,dx]=cwt_local_maximum(x,hpw)
dx = -cwt(x,2*hpw,'haar');
pos=find(sign(-sign(diff(sign(dx))+0.5)+1))';
end
I hav...
TimeTravelPenguin
Votes: 0
Answers: 0