Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.2 - 日本語

Change language to:
English - Français - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Scilab help >> Graphics > 2d_plot > fplot2d

fplot2d

関数で定義された曲線の二次元プロット

呼び出し手順

fplot2d(xr,f,[style,strf,leg,rect,nax])
fplot2d(xr,f,<opt_args>)

パラメータ

xr

ベクトル.

f

y=f(x)型の外部ルーチン. すなわち,scilab関数または 文字列として参照された動的にリンクされるルーチン.

style,strf,leg,rect,nax

plot2d参照

<opt_args>

plot2d参照

説明

fplot2d は外部関数f で定義された曲線をプロットします. 曲線は点(xr(i),f(xr(i))により 区分線形補間で近似されます. f(x)の値はfeval(xr,f)により取得されます.

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

deff("[y]=f(x)","y=sin(x)+cos(x)")
x=[0:0.1:10]*%pi/10;
fplot2d(x,f)
clf();
fplot2d(1:10,'parab')

参照

  • plot2d — 2Dプロット
  • feval — 関数(または外部ルーチン)を評価する
  • paramfplot2d — 関数で定義された曲線の2次元アニメーションプロット

作者

J.Ph.C.

<< fgrayplot 2d_plot grayplot >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu May 12 11:45:56 CEST 2011