How to get vibrational Raman Spectra from Time-Frequency graph?

조회 수: 2 (최근 30일)
Mattia Beccaceci
Mattia Beccaceci 2021년 8월 6일
답변: Kshitij Chhabra 2021년 8월 12일
Hello everyone,
Recently I performed my first Pump-Probe experiment on a sample of cresyl-violet. Leaving out the experimental set up, what I got in output is a matrix whose elements are the Intensities of a single frequency at a single time (time delay between the pump and probe). The graph is:
The signal is clearly chirped, so after performing de-chirping what i obtain is an other matrix called "Signal". Now what i want to get is the Raman spectra. My tutor said me I have to perform a Fourier Transform, so what i did is:
for i=1:length(Lambda)
Signal(i,:)=fft(Signal(i,:));
end
so for each wavelength, I should take the Fourier Transform of the vector and what I get is a complex number (ok I'm performing FFT so nothing strange) but if i plot both real and image part of Signal I get clearly wrong results. What i Should get is something like this:
Can you please help me?

답변 (1개)

Kshitij Chhabra
Kshitij Chhabra 2021년 8월 12일
I understand that you are having a problem in visualizing the correct output on plotting the real part and the imaginary part obtained after doing the FFT.
To obtain the expected plot, you can try plotting the absolute values of Signal.
Documentation on Fourier Transform can be found here for your reference.

카테고리

Help CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by