Main Content

このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。

ezplot3

(非推奨) 3 次元パラメトリック曲面プロッター

ezplot3 は推奨されません。代わりに fplot3 を使用してください。

説明

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') は、空間曲線のアニメーション化したトレースを作成します。

3 次元パラメトリック曲線

パラメトリックな曲線 x = sin(t), y = cos(t), z = t を領域 [0, 6π] にプロットします。

syms t
ezplot3(sin(t), cos(t), t,[0,6*pi])

Figure contains an axes object. The axes object with title x = blank sin ( t ), blank y blank = blank cos ( t ), blank z blank = blank t, xlabel x, ylabel y contains an object of type line.

入力引数

すべて折りたたむ

入力。シンボリックな関数または式として指定します。

入力。シンボリックな関数または式として指定します。

入力。シンボリックな関数または式として指定します。

プロット領域。シンボリック ベクトルとして指定します。ezplot3 は、領域 tmin < t < tmax についてプロットします。

バージョン履歴

R2006a より前に導入