|
% Set bandwidth and center frequency parameters.
fb = 1; fc = 1.5;
% Set effective support and grid parameters.
lb = -20; ub = 20; n = 1000;
% Compute complex Shannon wavelet shan1.5-1.
[psi,x] = shanwavf(lb,ub,n,fb,fc);
% Plot complex Shannon wavelet.
subplot(211)
plot(x,real(psi)),
title('Complex Shannon wavelet shan1.5-1')
xlabel('Real part'), grid
subplot(212)
plot(x,imag(psi))
xlabel('Imaginary part'), grid |
评分
-
1
查看全部评分
-
|