<< fplot3d 3d_plot genfac3d >>

Scilab Help >> Graphics > 3d_plot > fplot3d1

fplot3d1

関数により定義された曲面の3次元グレーまたは カラーレベルプロット

呼び出し手順

fplot3d1(xr,yr,f,[theta,alpha,leg,flag,ebox])
fplot3d1(xr,yr,f,<opt_args>)
h = fplot3d1(...)

引数

xr

大きさn1の行ベクトル.

yr

大きさn2の行ベクトル.

f

z=f(x,y)型の外部ルーチン.

theta,alpha,leg,flag,ebox

plot3d1参照.

<opt_args>

plot3d参照.

h

This optional output contains a handle to a Plot3d. Use h to modify its properties. For a list of properties, see surface_properties.

説明

fplot3d1 は外部関数f によりxr および yr で定義されるグリッド上で定義される曲面の3次元グレーまたは カラーレベルプロットをプロットします.

コマンド fplot3d1()を入力すると,デモが表示されます.

deff('z=f(x,y)','z=x^4-y^4')
x=-3:0.2:3 ;y=x ;
clf() ;fplot3d1(x,y,f,alpha=5,theta=31)

参照

History

VersionDescription
2025.0.0 Function returns the created handle(s).

Report an issue
<< fplot3d 3d_plot genfac3d >>