【发布时间】:2016-04-18 14:59:58
【问题描述】:
有什么方法可以在 Matlab 中为图形添加第三维? 我有一个 Graph 对象;
G = graph(S,T),
包括 XData 和 YData,Matlab 中是否可以有一个 3D 网络图?
在Graph对象中设置XData、YData等属性,像这样;
p = plot(G);
p.MarkerSize = ones(1,NumberOfNodes);
p.XData = (an array containing some point according to the return values of a function, the same applies for YData)
我需要一个 3D 图形,要绘制(可能)。
【问题讨论】: