MATLAB: Multiple image histogram on the same figure

barimhist

Hi I would like to know how I can plot multiple histogram on the same figure with different color next to each other using imhist command. I know how to do it using hist for a vector but I am looking for doing exactly same thing but for images. something like uploaded image but using imhist.

Best Answer

Why can't you just use hist() or histc(), and bar() or plot()???
Related Question