FT-IR spectral analysis
28 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kokila
am 28 Jan. 2014
Kommentiert: Wayne King
am 30 Jan. 2014
Hey,
I'm quite new to Matlab and would like some help!
I have FT-IR spectra that need to be analyzed. What I want to do it, to do a baseline correction on the spectra. How do I go about doing that? I also want to cut out spectra with intensities lower than a specific threshold for e.g. 0.1 or 0.2.
Is there a possible way to see these spectra individually on MATLAB somehow?
After all the pre-processing steps I would like to apply a cluster analysis such as VCA or a PCA.
Hope this clarifies my problem.
0 Kommentare
Akzeptierte Antwort
Wayne King
am 28 Jan. 2014
When you say baseline correction, you'll have to be more specific about what you mean. The magnitude or magnitude-squared of the Fourier transform has a lower bound of 0. So are you saying that your spectra have linear drifts that need to be corrected.
You can use detrend() to remove the best linear fit.
Or perhaps you mean you want to place all spectra on the same scale by dividing by the maximum value so that everything peaks at 1. That you can easily do by the following assuming that xdft is your spectrum:
xdft = xdft./max(xdft);
Can you attach one data file to clarify what you mean?
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Vibration Analysis 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!