~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/elementary/addf.cat

  • 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
addf             Scilab Group             Scilab Function              addf
 
2
NAME
 
3
   addf - symbolic addition
 
4
  
 
5
CALLING SEQUENCE
 
6
 addf("a","b")
 
7
PARAMETERS
 
8
 "a","b"    : character strings
 
9
            
 
10
DESCRIPTION
 
11
   addf("a","b") returns the character string "a+b". Trivial simplifications
 
12
  such as addf("0","a") or addf("1",2") are performed.
 
13
  
 
14
EXAMPLE
 
15
 addf('0','1')
 
16
 addf('1','a')
 
17
 addf('1','2')
 
18
 'a'+'b'
 
19
SEE ALSO
 
20
   mulf, subf, ldivf, rdivf, eval, evstr  
 
21