How to concatenate two feature vectors?
Say a and b are two vectors
result=[a;b] % If a and b have same column number
or
result=[a,b] %% If a and b have same rows number
If you want concatenate horizontally use , and if you want to concatenate vertically use ;