matrix dimension mismatch in hist3 plot()
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I am using the code below to create a hist3 plot.
My question is, why is the variable z data a 405x605 matrix?
I thought it would be 81x121 as defined by the variable edges?
Thank you
edges = {-4:0.1:4, 0:1:120}
hist3(Data,'Edges',edges);
set(gcf,'renderer','opengl');
s = get(gca,'child');
zData = get(s,'zData');
0 comentarios
Respuestas (1)
Walter Roberson
el 22 de En. de 2013
hist3 creates patches to represent the data. Each patch has more than one coordinate tuple.
1 comentario
Ver también
Categorías
Más información sobre Contour 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!