Wavelet Transform - Matlab

I would like to know how Wavelet transform works from a practical point of view. I read the theory regarding this, and I think I understood the basic idea of ​​this, but I would like to have some practice with it.

Can you please recommend me some lessons and some data that I can use to study Wavelet Transform using the Matlab environment?

I tried to find a beep or a practical tutorial that I can work on, but I had no results.

+4
source share
1 answer

The Mathworks site contains some information about their wavelet panel and some simple examples of continuous 1D wavelet transforms and discrete 2D wavelet transforms .

Since you have studied and understood the theory behind wavelet transforms, the best way to find out is to go through the source code for various algorithms that others have used. To get started, consider the main functions provided in the toolbar above (just enter type functionname at the command line in MATLAB. If this is not a built-in function, you will see the contents of the file). The core of the function, I mean the basic algorithm without all the various input checks that are common.

Stanford University's Wavelab tool is also a good resource to learn (and later use in your applications when you are comfortable with this).

Finally, this is a resource I found on Google, and it looks like they have examples that you can try.

+10
source

All Articles