From: hanene chaouch on
thanks for your help,
i use the first derivative of gaussian function ('gaus'), how i can introduce these codes to inverse the cwt: this is the continuous transform:
[out1, out2]=gauswavf(-5,5,10000,1);
coeff1=cwt(xt,2,out1);
thanks


TideMan <mulgor(a)gmail.com> wrote in message <3ac5d49a-7f39-43e5-be98-b209fffdff67(a)n8g2000prh.googlegroups.com>...
> On Jul 14, 12:38 am, "Wayne King" <wmkin...(a)gmail.com> wrote:
> > "hanene chaouch" <hanenchaou...(a)gmail.fr> wrote in message <i1hh0c$6t...(a)fred.mathworks.com>...
> > > yes i see the message of jo, but his function invcwt works with wavelet.m as a wavelet transform, and the the function that i am looking for is for cwt.m
> > > i hope that every body understand me.
> >
> > > "Wayne King" <wmkin...(a)gmail.com> wrote in message <i11mcb$9l...(a)fred.mathworks.com>...
> > > > "hanene chaouch" <hanenchaou...(a)gmail.fr> wrote in message <i11lls$os...(a)fred.mathworks.com>...
> >
> > > > > HI!!
> > > > > i have the same problem, i can't found the inverse of CWT in MATLAB.
> > > > > please if you can help me, it's an emergency.
> >
> > > > > "jon erickson" <erickson.pleasenos...(a)caltech.edu> wrote in message <fieqoj$4o...(a)fred.mathworks.com>...
> > > > > > Am I mistaken, or does the wavelet toolbox not contain a
> > > > > > function for the inverse continuous wavelet transform?
> >
> > > > > > Basically, I'm looking for something like waverec, but for
> > > > > > continous wavelet transform (cwt).  I looked through all the
> > > > > > documentation on the toolbox, searched the message board,
> > > > > > file exchange, but didn't see any.
> >
> > > > > > Maybe I spazzed out and missed it.  If it does not exist, I
> > > > > > am surprised mathworks didn't include it.
> >
> > > > > > Thanks
> > > > > > jon
> >
> > > > Hi, did you read the thread where Jon says that he posted the code?
> >
> > > >http://www.mathworks.com/matlabcentral/fileexchange/20821-continuous-...
> >
> > > > Wayne
> >
> > Hi, the inverse CWT is not currently supported in the Wavelet Toolbox.
> >
> > Wayne
>
> But using free software from here:
> http://paos.colorado.edu/research/wavelets/software.html
> and reading the paper that accompanies it, you can do the inverse in
> three lines of code:
> denom=scale.'*ones(1,nt);
> ywrecon=real(wave)./sqrt(denom);
> ywrecon=ywrecon*sqrt(dt)*dj*factor;
From: hanene chaouch on
what is the meaning of these terms: factor, dj, dt, nt??


"hanene chaouch" <hanenchaouch8(a)gmail.fr> wrote in message <i1mngd$jn6$1(a)fred.mathworks.com>...
> thanks for your help,
> i use the first derivative of gaussian function ('gaus'), how i can introduce these codes to inverse the cwt: this is the continuous transform:
> [out1, out2]=gauswavf(-5,5,10000,1);
> coeff1=cwt(xt,2,out1);
> thanks
>
>
> TideMan <mulgor(a)gmail.com> wrote in message <3ac5d49a-7f39-43e5-be98-b209fffdff67(a)n8g2000prh.googlegroups.com>...
> > On Jul 14, 12:38 am, "Wayne King" <wmkin...(a)gmail.com> wrote:
> > > "hanene chaouch" <hanenchaou...(a)gmail.fr> wrote in message <i1hh0c$6t...(a)fred.mathworks.com>...
> > > > yes i see the message of jo, but his function invcwt works with wavelet.m as a wavelet transform, and the the function that i am looking for is for cwt.m
> > > > i hope that every body understand me.
> > >
> > > > "Wayne King" <wmkin...(a)gmail.com> wrote in message <i11mcb$9l...(a)fred.mathworks.com>...
> > > > > "hanene chaouch" <hanenchaou...(a)gmail.fr> wrote in message <i11lls$os...(a)fred.mathworks.com>...
> > >
> > > > > > HI!!
> > > > > > i have the same problem, i can't found the inverse of CWT in MATLAB.
> > > > > > please if you can help me, it's an emergency.
> > >
> > > > > > "jon erickson" <erickson.pleasenos...(a)caltech.edu> wrote in message <fieqoj$4o...(a)fred.mathworks.com>...
> > > > > > > Am I mistaken, or does the wavelet toolbox not contain a
> > > > > > > function for the inverse continuous wavelet transform?
> > >
> > > > > > > Basically, I'm looking for something like waverec, but for
> > > > > > > continous wavelet transform (cwt).  I looked through all the
> > > > > > > documentation on the toolbox, searched the message board,
> > > > > > > file exchange, but didn't see any.
> > >
> > > > > > > Maybe I spazzed out and missed it.  If it does not exist, I
> > > > > > > am surprised mathworks didn't include it.
> > >
> > > > > > > Thanks
> > > > > > > jon
> > >
> > > > > Hi, did you read the thread where Jon says that he posted the code?
> > >
> > > > >http://www.mathworks.com/matlabcentral/fileexchange/20821-continuous-...
> > >
> > > > > Wayne
> > >
> > > Hi, the inverse CWT is not currently supported in the Wavelet Toolbox.
> > >
> > > Wayne
> >
> > But using free software from here:
> > http://paos.colorado.edu/research/wavelets/software.html
> > and reading the paper that accompanies it, you can do the inverse in
> > three lines of code:
> > denom=scale.'*ones(1,nt);
> > ywrecon=real(wave)./sqrt(denom);
> > ywrecon=ywrecon*sqrt(dt)*dj*factor;
From: TideMan on
On Jul 15, 10:37 pm, "hanene chaouch" <hanenchaou...(a)gmail.fr> wrote:
> what is the meaning of these terms: factor, dj, dt, nt??
>
> "hanene chaouch" <hanenchaou...(a)gmail.fr> wrote in message <i1mngd$jn...(a)fred.mathworks.com>...
> > thanks for your help,
> > i use the first derivative of gaussian function ('gaus'), how i can introduce these codes to inverse the cwt: this is the continuous transform:
> > [out1, out2]=gauswavf(-5,5,10000,1);
> > coeff1=cwt(xt,2,out1);
> > thanks
>
> > TideMan <mul...(a)gmail.com> wrote in message <3ac5d49a-7f39-43e5-be98-b209fffdf...(a)n8g2000prh.googlegroups.com>...
> > > On Jul 14, 12:38 am, "Wayne King" <wmkin...(a)gmail.com> wrote:
> > > > "hanene chaouch" <hanenchaou...(a)gmail.fr> wrote in message <i1hh0c$6t...(a)fred.mathworks.com>...
> > > > > yes i see the message of jo, but his function invcwt works with wavelet.m as a wavelet transform, and the the function that i am looking for is for cwt.m
> > > > > i hope that every body understand me.
>
> > > > > "Wayne King" <wmkin...(a)gmail.com> wrote in message <i11mcb$9l...(a)fred.mathworks.com>...
> > > > > > "hanene chaouch" <hanenchaou...(a)gmail.fr> wrote in message <i11lls$os...(a)fred.mathworks.com>...
>
> > > > > > > HI!!
> > > > > > > i have the same problem, i can't found the inverse of CWT in MATLAB.
> > > > > > > please if you can help me, it's an emergency.
>
> > > > > > > "jon erickson" <erickson.pleasenos...(a)caltech.edu> wrote in message <fieqoj$4o...(a)fred.mathworks.com>...
> > > > > > > > Am I mistaken, or does the wavelet toolbox not contain a
> > > > > > > > function for the inverse continuous wavelet transform?
>
> > > > > > > > Basically, I'm looking for something like waverec, but for
> > > > > > > > continous wavelet transform (cwt).  I looked through all the
> > > > > > > > documentation on the toolbox, searched the message board,
> > > > > > > > file exchange, but didn't see any.
>
> > > > > > > > Maybe I spazzed out and missed it.  If it does not exist, I
> > > > > > > > am surprised mathworks didn't include it.
>
> > > > > > > > Thanks
> > > > > > > > jon
>
> > > > > > Hi, did you read the thread where Jon says that he posted the code?
>
> > > > > >http://www.mathworks.com/matlabcentral/fileexchange/20821-continuous-...
>
> > > > > > Wayne
>
> > > > Hi, the inverse CWT is not currently supported in the Wavelet Toolbox.
>
> > > > Wayne
>
> > > But using free software from here:
> > >http://paos.colorado.edu/research/wavelets/software.html
> > > and reading the paper that accompanies it, you can do the inverse in
> > > three lines of code:
> > > denom=scale.'*ones(1,nt);
> > > ywrecon=real(wave)./sqrt(denom);
> > > ywrecon=ywrecon*sqrt(dt)*dj*factor;

Did you read the paper?
If so, it's obvious.
If not, get cracking.