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

« back to all changes in this revision

Viewing changes to man/elementary/subf.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH subf 3 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME  
4
 
subf -  symbolic subtraction
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
["c"]=subf("a","b")
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP 10
11
 
"a","b","c" 
12
 
: strings
13
 
.SH DESCRIPTION
14
 
returns the character string \fVc\fR=\fV"a-b"\fR
15
 
Trivial simplifications such as \fVsubf("0","a")\fR or
16
 
\fVsubf("1","2")\fR are performed.
17
 
.SH EXAMPLE
18
 
.nf
19
 
subf('0','a')
20
 
subf('2','1')
21
 
subf('a','0')
22
 
.fi
23
 
.SH SEE ALSO
24
 
mulf, ldivf, rdivf, eval, evstr
25
 
 
26