MATLAB: How to concatenate vectors of different dimensions

concatenationfeature extraction

From a set of 3000 images, I have extracted HOG (dimension: 3000*6084 single) and LBP (dimension: 3000*10) features. How can I concatenate these features of different lengths?

Best Answer

They have the same number of rows, so you can concatenate horizontally
[HOG,LBP]