syms t w; f_rs= exp(3*t)/( (1+exp(2*t))^2.5 ); R_y=fourier(f_rs); disp('original function'); f_x=(exp(-t).*exp(-exp(-t)))./3;% disp('fft to function'); T_y=fourier(f_x,t,w); R_f=R_y/T_y; subplot(1,5,1); ezplot(f_rs); subplot(1,5,2); ezplot(R_y); subplot(1,5,3); ezplot(f_x); subplot(1,5,4); ezplot(T_y); subplot(1,5,5); ezplot(R_f); |