Want to plot a matrix as a 3D histogram or bar chart.

28 visualizaciones (últimos 30 días)
Dean Ranmar
Dean Ranmar el 15 de Sept. de 2016
Comentada: Dean Ranmar el 15 de Sept. de 2016
I have a matrix (A) of count values. It counts the number of times event (x,y) occurs during a process, where x & y are integer metrics with pre-defined, non-equal ranges (thus A is not square). That is, every time event (9,10) occurs, the accumulator (counter) array is incremented: A(9,10)=A(9,10)+1. I want to plot out the matrix A as a histogram (or bar chart) to examine and analyze the distribution of events. I am aware of bar3 and some MATLAB histogram plotting scripts but I don't see how to make them work, for this application. (I did search the download section here but didn't find what I want.)
  1 comentario
José-Luis
José-Luis el 15 de Sept. de 2016
Could you show an example of what you want and how exactly bar3() doesn' t work?

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 15 de Sept. de 2016
With a size of 128 by 1024, you might be better off using surf() than bar3(), or simply viewing it as an image instead of a 2.5-D rendering (a 3-D rendering of your 2-D array onto your 2-D flat screen monitor).

Más respuestas (3)

Thorsten
Thorsten el 15 de Sept. de 2016
A = rand(9,10); % sample values
bar3(A)
  1 comentario
Dean Ranmar
Dean Ranmar el 15 de Sept. de 2016
Thanks. I've tried this and it doesn't work in my case. When I call bar3, I get a 2D figure for some reason. I tried the specific code lines you suggested, adjusted to my array size (128x1024) and it works. My test case is fairly sparse (few samples) and that may be the problem, I'll try loading the matrix with more values and see if that helps.

Iniciar sesión para comentar.


Steven Lord
Steven Lord el 15 de Sept. de 2016
As of release R2016b, the histogram and histogram2 functions can create a histogram using either raw data to be binned or precomputed bin counts. See the Release Notes for more information.
  1 comentario
Dean Ranmar
Dean Ranmar el 15 de Sept. de 2016
I will have to update then. I'm using 2015b right now. Thanks.

Iniciar sesión para comentar.


Dean Ranmar
Dean Ranmar el 15 de Sept. de 2016
Thank you! I completely forgot about surf. It worked like a charm.

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by