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 を使用すると問題なく動作しましたが、1 つの問題が発生しました。
私は以下を使用します
plot3(x,y,z,'-rv')
上記のコードを変更して、マーカーが 1 つの最後のノードのみに表示されるようにするにはどうすればよいですか?
どんな助けでも大歓迎です。
--
grnspn
2 つの別々のコマンドを使用してプロットできます。
plot3(x,y,z,'-r') hold on plot3(x(end),y(end),z(end),'rv')