Name
fuslist — merge vectors of a list
CALLING SEQUENCE
[vecout]=fuslist(listin)
PARAMETERS
- Input
listin = the list of vectors to fusion
- Output
vecout= the fusion
DESCRIPTION
Makes the fusion between the vectors of a list. Each component of the list must be a (n,1) vector
EXAMPLE
vec1=1:2:7;
vec2=0:2:8
numx3=fuslist(list(vec1,vec2))