Man Scilab

lstcat
Scilab Function

lstcat - list concatenation

Calling Sequence

lc=lstcat(l1,..ln)

Parameters

Description

lc=lstcat(l1,..ln) catenates components of li lists in a single list. If the li are other type of variables they are simply added to the resulting list.

Examples


lstcat(list(1,2,3),33,list('foo',%s))
lstcat(1,2,3)
 
  

See Also

list ,  

Back