|
jenson joseph <jensonjoseph16@gmail.com> wrote in message <b5c8f477-c3dd-4603-b4b4-28dc70b559e1@glegroupsg2000goo.googlegroups.com>...
> clc;
> close all;
> clear all;
> load noisdopp;
> x = noisdopp;
> wp = wpdec(x,2,'db1');
> cfs= read(wp,'allcfs');
> A1 = cfs2wpt('db1',[1 1024],[3 4 5 6],2,cfs); %some problem with the 3rd parameter
> a1 = wpcoef(A1,[1 0]);
> plot(A1);
make this change .it is running
A1 = cfs2wpt('db1',[1 1024],[3 4 5 6],2,cfs); %some problem with the 3rd
to
A1 = cfs2wpt('db1',[1 1024],[3 4 5 6]',2,cfs); %some problem with the 3rd .
|