File: param3d.cat

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (46 lines) | stat: -rw-r--r-- 1,366 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

param3d(2)                     Scilab Function                     param3d(2)
NAME
  param3d - set of points or parametric curves in 3-D

CALLING SEQUENCE
  param3d(x,y,z,[theta,alpha,leg,flag,ebox]

PARAMETERS

  x,y,z          : three matrices of the same size (considered as vectors
                 with the Fortran storage convention)  (points of the
                 parametric curve)

  theta, alpha   : gives the coordinates in spherical angle of the observa-
                 tion point

  leg            : string describing the caption for each axis, the different
                 fields in the string are separated by the symbol @, for
                 example : "X@Y@Z"

  flag =[type,box] :
                 where  type and  box have the same meaning as in plot3d

  ebox           : a vector of size (1,6) which gives the boundaries of the
                 plot [xmin,xmax,ymin,ymax,zmin,zmax] when the value of type
                 is 1

DESCRIPTION
  param3d is used to obtain a graphic of a parametric curve in R3.  Enter the
  command param3d() to see a demo.

  Look at param3d1 for multi R3 parametric curves and R3 point drawing.

EXAMPLE
  t=0:0.1:5*%pi;
  param3d(sin(t),cos(t),t/10,35,45,"X@Y@Z",[2,3])
  xbasc();
  xset("dashes",3)
  param3d(rand(1,100),rand(1,100),rand(1,100),35,45,"X@Y@Z",[2,3])

SEE ALSO
  param3d1

AUTHOR
  J.Ph.C.