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

« back to all changes in this revision

Viewing changes to man/programming/lstcat.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 lstcat 1 "Jan 1997" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
lstcat - list concatenation
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
lc=lstcat(l1,..ln)
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP
11
 
li
12
 
: list or any other type of variable
13
 
.TP
14
 
lc
15
 
: a list
16
 
.SH DESCRIPTION
17
 
\fVlc=lstcat(l1,..ln)\fR catenates components of \fVli\fR lists in a
18
 
single list. If \fVli\fR are other type of variables they are simply
19
 
added to the resulting list.
20
 
.SH EXAMPLE
21
 
.nf
22
 
lstcat(list(1,2,3),33,list('foo',%s))
23
 
lstcat(1,2,3)
24
 
.fi
25
 
.SH SEE ALSO
26
 
list
27