Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2025.1.0 - Русский


nf3d

Rectangular facets to plot3d parameters

Syntax

[xx,yy,zz]=nf3d(x,y,z)

Arguments

x,y,x,xx,yy,zz

6 real matrices

Description

Utility function. Used for transforming rectangular facets coded in three matrices x,y,z to scilab code for facets accepted by plot3d.

Examples

// A sphere...
[x, y, z] = sphere([20, 40]);
// plot3d2(x,y,z) is equivalent to...
[xx,yy,zz]=nf3d(x,y,z); plot3d(xx,yy,zz);

See also

  • plot3d — 3D plot of a surface
  • plot3d2 — plot surface defined by rectangular facets
Report an issue
<< mesh 3d_plot param3d >>

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 May 22 12:55:26 CEST 2025