Borrar filtros
Borrar filtros

plot3 temperature color

2 visualizaciones (últimos 30 días)
Michela Longhi
Michela Longhi el 1 de Ag. de 2017
Comentada: José-Luis el 1 de Ag. de 2017
Hi, I have this plot 3d:
figure()
plot3(X,Y,Z)
where X and Y are coordinate and Z is the correspondent temperature value for each couple of (x,y), as for exampe: x1=0, y1=0, z1=28°C...
But now, I want to color the plot changing the color depending from the temperature.
How can I do? Please, help me
Thanks,
Michela

Respuestas (3)

KSSV
KSSV el 1 de Ag. de 2017
Editada: KSSV el 1 de Ag. de 2017
You need to plot a scatter plot. Read about scatter and scatter3
  1 comentario
Michela Longhi
Michela Longhi el 1 de Ag. de 2017
Can you please give ma an example?

Iniciar sesión para comentar.


José-Luis
José-Luis el 1 de Ag. de 2017
Looks like you are looking for scatter3().
  2 comentarios
Michela Longhi
Michela Longhi el 1 de Ag. de 2017
My code is:
fileID_A=fopen('coordinate.txt');
A = textscan(fileID_A,'%f %f %f');
X=A{2};
Y=A{3};
Z=A{1};
figure()
scatter3 (X,Y,Z)
colormap(jet);
colorbar;
But it not works, why? Thank you
José-Luis
José-Luis el 1 de Ag. de 2017
It not works is not a helpful description of your problem. What do you get and what do you expect?
Is there an error message and if so, what is it?

Iniciar sesión para comentar.


Michela Longhi
Michela Longhi el 1 de Ag. de 2017
I wrote:
plot3(X,Y,Z)
c = 1:numel(Y); %# colors
h = surface([X(:), X(:)], [Y(:), Y(:)], [Z(:), Z(:)], [c(:), c(:)], 'EdgeColor','flat', 'FaceColor','none','Linewidth',2);
colormap( jet(numel(Y)) )
But I want that the color change with the temperature value. How can I do???

Categorías

Más información sobre Orange 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!

Translated by