meyeraux
Generate a Meyer auxiliary wavelet.
Syntax
y = meyeraux(x)
Inputs
- x
- The points at which to evaluate the function, typically on the interval [0,1].
Outputs
- y
- The Meyer auxiliary values.
Example
Plot a Meyer auxiliary wavelet.
x = [0:0.01:1];
y = meyeraux(x);
plot (x, y);
xlabel('domain');
ylabel('range');