| MATLAB Function Reference | ![]() |
表示
ezplot3(x,y,z) ezplot3(x,y,z,[tmin,tmax]) ezplot3(...,'animate')
詳細
ezplot3(x,y,z) は、デフォルトの領域 0 < t < 2
上で、空間曲線 x = x(t), y = y(t), z = z(t)を表示します。
ezplot3(x,y,z,[tmin,tmax]) は、領域tmin < t < tmaxで、曲線 x = x(t), y = y(t),z = z(t)をプロットします。
ezplot3(...,'animate') は、空間曲線のアニメーションを作成します。
注意
配列の乗算、除算、指数は、ezplot3へ転送する中に必ず含まれます。たとえば、つぎの表現のプロットに対するMATLAB書式
x = s./2, y = 2.*s, z = s.^2;
ezplot3('s/2','2*s','s^2')
これは、s/2を、ezplot3に転送するとき、s./2と解釈しています。
例題
ezplot3('sin(t)','cos(t)','t',[0,6*pi])
参考
ezcontour, ezcontourf, ezmesh, ezmeshc, ezplot, ezpolar, ezsurf, ezsurfc, plot3
| ezplot | ezpolar | ![]() |