How do I convert units?

I have a raman spectrum that look like this:
The x-axis is in wavenumber. How do I convert it to wavelength.
The wavenumber and wavelength relation is govern by:
w = the wavenumber
λ0 = excitation wavelength, which is 785nm in this case
λ1 = the Raman spectrum wavelength, which i want to obtain in this case
The wavenumber are:

回答(1 个)

when you do your plot, instead of plotting all your y data against wavenumber, just plot against wavelength
plot(wavenumber,[y1,..,yn]) -> plot(wavelength,[y1,..,yn])
Or if you want to change the figure already created, you need to modify the Xdata property of all your plot with a command looking like
set(findall(gca,'Type','line'),'Xdata',wavelength)
where wavelength is the new vector you just calculated, which has the same size as wavenumber.

类别

帮助中心File Exchange 中查找有关 Graphics 的更多信息

提问:

2014-10-15

回答:

2014-10-15

Community Treasure Hunt

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

Start Hunting!

Translated by