Scilab-Branch-5.3-GIT
      
      - Scilab help
- Graphics
- 2d_plot
- LineSpec
- Matplot
- Matplot1
- Matplot_properties
- Sfgrayplot
- Sgrayplot
- champ
- champ1
- champ_properties
- contour2d
- contour2di
- contourf
- errbar
- fchamp
- fcontour2d
- fec
- fec_properties
- fgrayplot
- fplot2d
- grayplot
- grayplot_properties
- graypolarplot
- histplot
- oldplot
- paramfplot2d
- plot
- plot2d
- plot2d1
- plot2d2
- plot2d3
- plot2d4
- plot2d_old_version
- polarplot
- comet
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
fgrayplot
関数により定義される曲面のカラー二次元プロット
呼び出し手順
fgrayplot(x,y,f,[strf,rect,nax]) fgrayplot(x,y,f,<opt_args>)
パラメータ
- x,y
- 実数行ベクトル. 
- f
- 外部ルーチン,形式は - y=f(x,y).
- <opt_args>
- 一連の命令 - key1=value1, key2=value2,... を表し,- key1,- key2,...には以下のどれかを指定できます: rect, nax, strf または axesflag および frameflag (- plot2d参照).
- strf,rect,nax
- plot2d参照.
説明
fgrayplot は,
	x および yで定義された
	グリッド上でz=f(x,y)により指定された曲面の
	2次元プロットを作成します.
	グリッド上の角矩形は各矩形のコーナのz
	平均値に基づきグレーまたはカラーの色で塗りつぶされます.
コマンド fgrayplot() を入力すると,デモが表示されます.
例
t=-1:0.1:1; deff("[z]=my_surface(x,y)","z=x**2+y**2") fgrayplot(t,t,my_surface,rect=[-2,-2,2,2])
参照
- grayplot — 曲面の2次元カラープロット
- plot2d — 2Dプロット
- Sgrayplot — 色付きの曲面の2次元平滑化プロット
- Sfgrayplot — 関数により定義された曲面の平滑化2次元カラープロット
作者
J.Ph.C.
| << fec_properties | 2d_plot | fplot2d >> |