MATLAB: Advice needed on plotting bar3

3d plotbar3

Hi guys,
I hope to get some advice here. I've to plot a 1000×1000 graph with every coordinate (eg (0,0) (0,1) (0,2) … (1000,1000)) each having a value. So the height of the individual bars being that value.
Currently all my values are in a 2d array, Z(1000,1000).
Some help please!

Best Answer

bar3(Z)
Related Question