g = gsp_design_meyer(G, Nf, param); gsp_design_meyer(G ,Nf); gsp_design_meyer(G);
| G | Graph or upper bound on the Laplacian spectrum |
| Nf | Number of filters to cover the interval [0,lmax] (default 6) |
| param | Structure of optional parameters |
| g | A cell array of filters |
This function return a array of filters designed to be meyer wavelet.
param is an optional structure containing the following fields
This function will compute the maximum eigenvalue of the laplacian. To be more efficient, you can precompute it using:
G = gsp_estimate_lmax(G);
Example:
Nf = 4; G = gsp_sensor(100); G = gsp_estimate_lmax(G); g = gsp_design_meyer(G, Nf); gsp_plot_filter(G,g);
This function is inspired by the sgwt_toolbox.