~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/utilities/sci2exp.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.TH abs G "April 1993" "Scilab Group" "Scilab Function"
 
2
.so ../sci.an
 
3
.SH NAME
 
4
sci2exp - converts  variable to  expression
 
5
.SH CALLING SEQUENCE
 
6
.nf
 
7
t=sci2exp(a [,nam] [,lmax])
 
8
.fi
 
9
.SH PARAMETERS
 
10
.TP
 
11
a  
 
12
: a scilab variable, may be
 
13
.RS
 
14
.TP 10 
 
15
-
 
16
constant, 
 
17
.TP 
 
18
-
 
19
polynomial 
 
20
.TP
 
21
-
 
22
 string matrix
 
23
.TP
 
24
-
 
25
 list
 
26
.TP
 
27
-
 
28
boolean matrix
 
29
.RE
 
30
.TP
 
31
nam
 
32
: character string
 
33
.TP
 
34
t  
 
35
: vector of string, contains the expression or instruction definition
 
36
.TP
 
37
lmax
 
38
: integer, contains the maximum line length. default value is 90,
 
39
\fVlmax=0\fR indicate  no line length control a single string is returned
 
40
 
 
41
.SH DESCRIPTION 
 
42
\fVsci2exp\fR converts  variable to an instruction if \fVnam\fR is
 
43
given or to an expression .
 
44
.SH EXAMPLE
 
45
.nf
 
46
  a=[1 2;3 4]
 
47
  sci2exp(a,'aa')
 
48
  sci2exp(a,'aa',0)
 
49
  sci2exp(ssrand(2,2,2))
 
50
  sci2exp(poly([1 0 3 4],'s'),'fi')
 
51
.fi