I work with some matlab code that I drew from another person, I don’t understand the meaning of the q = [q; th ']. I feel that I should be able to simply remove it so that q = distribuc ...
function [ q ] = ObtainHistogramForEachTarget( state, numberOfTargets, image, q )
for i=1 : numberOfTargets
qi = distribucion_color_bin_RGB2(state(i).xPosition,state(i).yPosition,state(i).size,image,2);
q = [q; qi'];
end
end
Can someone explain this to me?
source
share