Filter löschen
Filter löschen

FFT and Optical Spectra

3 Ansichten (letzte 30 Tage)
Paul Clarkson
Paul Clarkson am 18 Okt. 2017
Kommentiert: Sohel Rana am 15 Jan. 2021
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?

Antworten (1)

Peter Cook
Peter Cook am 18 Okt. 2017
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 Kommentar
Sohel Rana
Sohel Rana am 15 Jan. 2021
Hi Paul,
Did you resolve the issue. I'm facing similar kind of problem. Could you please help me with that?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Fourier Analysis and Filtering finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by