[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Plot Mother wavelets
From: |
Blaz |
Subject: |
Plot Mother wavelets |
Date: |
Fri, 19 Feb 2021 01:54:42 -0600 (CST) |
Hello
I am having an issue with plotting the mother wavelets in Octave. I am
having the following piece of code which calculates simple sine wave and a
db8 wavelet with 4 iterations. Is it possible to plot every one of the 4
mother wavelets aslo? I can not figure it out. Any help is much appreciated.
Thanks
t=[0:0.00025:0.02];
x=sin(2*pi*50*t);
[w,info]=fwtinit('db8');
[u,v]=fwt(x,w,4);
clf
subplot(311)
plot(t,x)
subplot(312)
bar(u)
subplot(313)
plotwavelets(u,v)
--
Sent from: https://octave.1599824.n4.nabble.com/Octave-General-f1599825.html
- Plot Mother wavelets,
Blaz <=