Borrar filtros
Borrar filtros

How can i print z axis values on a pcolor plot

7 visualizaciones (últimos 30 días)
harshpurohit11
harshpurohit11 el 15 de Ag. de 2018
Comentada: harshpurohit11 el 16 de Ag. de 2018
x = [0,10,20,30], y = [100,210,300,500] z = [0 0 0 1; 0 0 1 0; 1 1 0 0; 1 0 0 0];
i tried generating a pcolor plot for above variables such as
pcolor(x, y,z);colormap summer; colorbar
Now I need to display the z values on the plot for every box displayed in the plot and I havent been able to find a way to do so

Respuesta aceptada

jonas
jonas el 15 de Ag. de 2018
Something like this?
[X,Y]=meshgrid(x,y);
hold on;
pcolor(x, y,z);
colormap summer;
colorbar
text(X(:),Y(:),num2cell(z(:)'))
  3 comentarios
jonas
jonas el 16 de Ag. de 2018
Editada: jonas el 16 de Ag. de 2018
I am not sure I understand. Can you give me a hint? Perhaps an image?
I'm speculating now but perhaps you can replace the last line of code with this:
text(X(:),Y(:),sprintfc('%d',z(:)))
Or do you want to change the fontsize? if so:
text(X(:),Y(:),sprintfc('%d',z(:)),'fontsize',5)
harshpurohit11
harshpurohit11 el 16 de Ag. de 2018
This is perfect. Thanks a lot :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by