Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在任何坐标系中只绘制一个点:笛卡尔、圆柱或球面。
我尝试plot3(1,1,1)了许多值,但只是在所有值的同一位置显示了一个小点!我也试过surf(X,Y,Z),但 matlab 说:Z 必须是矩阵,而不是标量或向量。
plot3(1,1,1)
surf(X,Y,Z)
这个怎么样?
plot3(1,1,1,'.'); grid on
您确实尝试过,但话又说回来,这正是它的作用!
像 scatter3(x,y,z1,720,'g','fill') 这样的东西会在向量 x,y,z1 中列出的所有点周围生成 720 大小的不透明绿色球体。