Scilab Wavelet Toolbox Function
Last update : Feburary 2006

cat - concatenation of input variables

Calling Sequence

d=cat(a,b,[c])

Parameters

Description

This function concatenate the input vectors or matrixes. The number of input variables should be two or three. Row vector and column vector are both allowed. However, the result is row vector.

This function is useful when assembling some coefficients to a predefined storing format which is used in multiple stride decomposition. Hence one could make some modifications on individual coefficients independently and assemble them back to give a reconstruction.

Examples


-->a=[1 2 3];     
-->b=[4 5 6];
-->c=[7 8 9];
-->d=cat(a,b,c)
 d  =
 
!   1.    2.    3.    4.    5.    6.    7.    8.    9. !

  

See Also

None