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.
我需要在 Matlab 中绘制一些结果。使用 plot3 工作得很好,但是确实出现了一个问题。
我使用以下
plot3(x,y,z,'-rv')
如何更改上述代码,使标记仅出现在最后一个节点上?
任何帮助将非常感激。
--
grnspn
您可以使用两个单独的命令进行绘图:
plot3(x,y,z,'-r') hold on plot3(x(end),y(end),z(end),'rv')