MATLAB: How to plot multiple histogram in a Figure

3d plotsMATLAB

I have a matrix of size 100x1x24 and I want to plot the histogram of each group(100×1) in one plot but in a 3D plot form, like what is attached. thanks.

Best Answer

Put all the histograms into one 2-D array, and then call waterfall() or ribbon().
Related Question