Hist3, height bar depends on a third variable
Mostrar comentarios más antiguos
bars height on hist3 depends on frequency of first and second variable. How can I height of those bars be related to another variable. Maybe hist3 is not the right function to achieve that.
Thanks
Respuestas (1)
arich82
el 11 de Dic. de 2015

x = 1:5;
y = 1:10;
[X, Y] = meshgrid(x, y);
Z = sqrt(X.^2 + Y.^2);
figure;
bar3(y, Z);
axis tight;
Does this do what you want? If not, please explain in the comments.
1 comentario
Luis Lopez
el 11 de Dic. de 2015
Editada: Luis Lopez
el 11 de Dic. de 2015
Categorías
Más información sobre Annotations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
