How to plot a complicated 3D graph

4 次查看(过去 30 天)
John
John 2012-1-11
Hi there,
I'm only new to matlab but I'm trying to plot a graph like this
I would appreciate any feedback, suggestions, advice on how you could achieve this
I have an array of arrival times and departure times.
x=load('arrivaltimes.txt'); y=load('departuretimes.txt');
Would I start off by plotting a histogram of departure times and arrival times. Then a scatter plot of arrival and departure times. And then some how make them 3D?
Thank you

回答(1 个)

Walter Roberson
Walter Roberson 2012-1-11
hist() calls bar() to create the plots. bar() creates a hggroup object whose children are patch objects, each of which has XData and YData properties defining where the patch should be drawn. Each of those patches will also have an empty ZData property.
You can play tricks such as grabbing the YData, setting the ZData to that, and setting the YData to an array of constant value.
For the scatter plot, use scatter3()

类别

Help CenterFile Exchange 中查找有关 Polygons 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by