如何在Matlab中确定轴是2D还是3D?

时间:2011-11-09 12:23:28

标签: matlab properties plot axes

如上所述,如果Matlab轴对象是2D或3D绘图,以编程方式确定的最简单方法是什么?

2 个答案:

答案 0 :(得分:4)

检查[az,el] = view的输出。如果它是2D,那么el == 90

答案 1 :(得分:0)

使用: numel(轴)/ 2

它将返回2为2d,3为3d。