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.
plot3MatLabの機能について簡単な質問があります。
plot3
私が次のように書いたとしましょう:
x = [1 1 -1 1]; y = [4 4 4 4]; z = [-1 1 1 -1]; plot3(x,y,z)
MatLabが、点(-1、4、-1)をプロットするだけでなく、(-1,4-1)、(1、4、-1)、(1,4,1)の頂点を持つ三角形を描画するのはなぜですか? 、(1、4、-1)および(1、4、1)?
plotおよびのデフォルトplot3の線種は、点だけでなく線です。ポイントだけをプロットする場合は、別のスタイルを使用します。
plot
plot3(x,y,z,'or'); #% plots red circles at each point