matrix dimension mismatch in hist3 plot()
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Walter Roberson
il 22 Gen 2013
hist3 creates patches to represent the data. Each patch has more than one coordinate tuple.
1 Commento
Vedere anche
Categorie
Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!