Scilab-Branch-6.1-GIT
- Ajuda do Scilab
- Biblioteca de Gráficos
- 2d_plot
- champ
- champ1
- champ_properties
- comet
- contour2d
- contour2di
- contour2dm
- contourf
- cutaxes
- errbar
- fchamp
- fec
- fec properties
- fgrayplot
- fplot2d
- grayplot
- grayplot_properties
- graypolarplot
- histplot
- LineSpec
- loglog
- Matplot
- Matplot1
- Matplot properties
- paramfplot2d
- plot
- plot2d
- plot2d2
- plot2d3
- plot2d4
- plotimplicit
- polarplot
- scatter
- semilogx
- semilogy
- Sfgrayplot
- Sgrayplot
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
fplot2d
esboço 2d de uma curva definida por uma função (obsoleto)
Seqüência de Chamamento
fplot2d(xr,f,[style,strf,leg,rect,nax]) fplot2d(xr,f,<opt_args>)
Parâmetros
- xr
vetor
- f
função externa do tipo
y=f(x)
i.e. uma função scilab ou rotina dinamicamente linkada ("ligada") referida como um string.- style,strf,leg,rect,nax
ver
plot2d
- <opt_args>
ver
plot2d
Descrição
fplot2d() is obsolete and will be removed from Scilab 6.2.x.
Please use plot(xr,f,..) instead. |
fplot2d
esboça uma curva definida pela função
externa f
. A curva é aproximada por uma interpolação
linear seccional utilizando os pontos (xr(i),f(xr(i))
.
Os valores de f(x) são obtidos por feval(xr,f)
.
Entre com o comando fplot2d()
para visualizar uma
demonstração.
Exemplos
deff("y = f(x)", "y = sin(x)+cos(x)") x = [0:0.1:10]*%pi/10; fplot2d(x,f)
clf fplot2d(1:10,'parab')
Ver Também
- plot2d — 2D plot
- feval — múltipla avaliação
- paramfplot2d — Esboço animado 2d, curva definida por uma função
Histórico
Versão | Descrição |
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 >> |