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.
任意の座標系 (デカルト、円筒、または球) で 1 つの点だけをプロットしようとしています。
多くの値を試し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 の不透明な緑色の球を作成します。