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


fplot3d

3D plot of a surface defined by a function

Syntax

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

Arguments

xr

row vector of size n1.

yr

row vector of size n2.

f

external of type z=f(x,y).

theta,alpha,leg,flag,ebox

see plot3d.

<opt_args>

see 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.

Description

fplot3d plots a surface defined by the external function f on the grid defined by xr and yr.

Enter the command fplot3d() to see a demo.

Examples

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

See also

  • plot3d — 3D plot of a surface

History

VersionDescription
2025.0.0 Function returns the created handle(s).
Report an issue
<< eval3dp 3d_plot fplot3d1 >>

Copyright (c) 2022-2024 (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 Oct 24 11:15:59 CEST 2024