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

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.
See the recommended documentation of this function

Scilab help >> Graphics > 3d_plot > nf3d

nf3d

plot3d パラメータ用の矩形小平面

呼び出し手順

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

引数

x,y,x,xx,yy,zz

実数行列

説明

ユーティリティ関数. 3つの行列 x,y,zにコード化された矩形の小平面を plot3dに指定可能な小平面のScilabコードに 変換する際に使用されます.

//A sphere...
u = linspace(-%pi/2,%pi/2,40);
v = linspace(0,2*%pi,20);
x= cos(u)'*cos(v);
y= cos(u)'*sin(v);
z= sin(u)'*ones(v);
//plot3d2(x,y,z) は以下と等価です...
[xx,yy,zz]=nf3d(x,y,z); plot3d(xx,yy,zz)

参照

  • plot3d — 曲面の3次元プロット
  • plot3d2 — 矩形の小平面により定義された曲面をプロット
Report an issue
<< milk_drop 3d_plot param3d >>

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 Oct 01 17:40:33 CEST 2012