how to plot line profiles in 3D

2 ビュー (過去 30 日間)
John
John 2011 年 12 月 12 日
Hi,
Could someone please advise me how I can plot this graph in matlab?
This graph just displays 45 profiles side by side and displayed in 3D. Velocity is on Y axis and time is on the x axis.
This is a 2D example
I would really appreciate the help.
Thank you

回答 (3 件)

Sean de Wolski
Sean de Wolski 2011 年 12 月 12 日
mesh will do that with the appropriate settings.
doc mesh

John
John 2011 年 12 月 12 日
Hi,
I'm not very good at matlab, if I import the coordinates like this:
x = load('x.txt.');
y1 = load('y1.txt.');
y2 = load('y2.txt.');
What would be the command to plot the two lines side by side? so it would be (x,y1) and (x,y2).
Thank you very much
John
  1 件のコメント
Sean de Wolski
Sean de Wolski 2011 年 12 月 12 日
plot(x,y1,'b-',x,y2,'r--')
x/y1 will be a blue and solid, x/y2 will be red dashed

サインインしてコメントする。


John
John 2011 年 12 月 13 日
hi,
What would be the command to plot the lines in the mesh grid so that it looks like this
I used the command above and rotated it but it came out like this
Thanks for the help

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by