FFT and Optical Spectra

3 次查看(过去 30 天)
Paul Clarkson
Paul Clarkson 2017-10-18
评论: Sohel Rana 2021-1-15
I have saved optical spectra (Intensity vs wavelength) as text files. How do I load these text files into matlab, invert the wavelength into wavenumber, interpolate so that the data points are evenly spaced and then FFT the frequency domain spectrum?

回答(1 个)

Peter Cook
Peter Cook 2017-10-18
If you're looking for a simple import and speed isn't a concern you should try:
uiimport
A speedier load than this can be achieved using low-level IO functions.
Depending on your field, converting wavelength to wavenumber is achieved using either
waveNumber = 1./waveLength
%or
waveNumber = 2*pi./waveLength
The interpolation you are looking for can be achieved using either
interp1
%or
interp2
depending on the dimensions of your data, or using the
resample function if you want some antialiasing.
The FFT is done with the aptly named
fft
function.
I am not exactly sure what you're doing, but I think you could probably skip most of these steps and just fft the intensity vs wavelength data to achieve the same goal.
  1 个评论
Sohel Rana
Sohel Rana 2021-1-15
Hi Paul,
Did you resolve the issue. I'm facing similar kind of problem. Could you please help me with that?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by