changing to wavelength domain
1 次查看(过去 30 天)
显示 更早的评论
% hello everyone i have a question : in my small code here, I drawn a Fourier transform function from time to frequency domain but what if I want the Fourier transform not in frequency , but in wavelength where wavelength=2*pi*c/frequency how can i change the scale in the Fourier transform from frequency to wavelength :
t=0:0.1:10;
P0=sqrt(9.6);
Ap=P0.*exp(-.05.*(t/3).^2);
figure
I=fftshift(fft(Ap));
S=I.^2;
plot(abs(S))
xlabel('normalized frequency')
ylabel('spectral intensity')
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!