How do I plot this to display a spectrum?

1 次查看(过去 30 天)
I want to plot the intensity against wavenumber.
This is the intensity i believe:
But i dont understand what's val(:,:,1) this runs till val(:,:,729)
and this is the wavenumber:
and it runs from 1 to 729
i tried to plot x = wavenumber and y = ref_Raw and plot (x,y)
however it was reflected
??? Error using ==> plot Data may not have more than 2 dimensions
do need help with this!
thanks

采纳的回答

Rick Rosson
Rick Rosson 2014-10-11
x = wavenumber;
y = transpose(squeeze(ref_raw));
plot(x,y);

更多回答(1 个)

hithere
hithere 2014-10-11
Thanks alot!
But may I roughly know i would need to transpose. and whats the purpose of squeeze command?
thanks!
  3 个评论
hithere
hithere 2014-10-11
Thanks mate! Sorry for the trouble, im still learning.
Thanks alot!
Rick Rosson
Rick Rosson 2014-10-11
No need to apologize. We are all still learning. When we stop learning, then it's time to throw in the towel!

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by