matrix dimension mismatch in hist3 plot()
2 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Walter Roberson
on 22 Jan 2013
hist3 creates patches to represent the data. Each patch has more than one coordinate tuple.
See Also
Categories
Find more on Data Distribution Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!