Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - Français

Change language to:
English - 日本語 - 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.

Aide de Scilab >> Graphiques > 2d_plot > fplot2d

fplot2d

2D plot of a curve defined by a function (obsolete)

Syntax

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

Arguments

xr

vector.

f

external of type y=f(x) i.e. a scilab function or a dynamically linked routine referred to as a string.

style,strf,leg,rect,nax

see plot2d

<opt_args>

see plot2d

Description

fplot2d() is obsolete and will be removed from Scilab 6.2.x. Please use plot(xr,f,..) instead.

fplot2d plots a curve defined by the external function f. The curve is approximated by a piecewise linear interpolation using the points (xr(i),f(xr(i)). The values of f(x) are obtained by feval(xr,f).

Enter the command fplot2d() to see a demo.

Examples

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

See also

  • plot2d — 2D plot
  • feval — évaluation multiple d'une fonction
  • paramfplot2d — animation dans le plan d'une courbe définie par une fonction

History

VersionDescription
6.1.1 fplot2d() is declared obsolete, to be removed from 6.2.x. plot(x,f) replaces it.
Report an issue
<< 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:
Mon Jan 03 14:33:07 CET 2022