Azzera filtri
Azzera filtri

FFT and Optical Spectra

3 visualizzazioni (ultimi 30 giorni)
Paul Clarkson
Paul Clarkson il 18 Ott 2017
Commentato: Sohel Rana il 15 Gen 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?

Risposte (1)

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

Accedi per commentare.

Categorie

Scopri di più su Fourier Analysis and Filtering in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by