2D plot with 3 var

1 visualización (últimos 30 días)
Cristián Vera
Cristián Vera el 29 de En. de 2020
Comentada: Cristián Vera el 3 de Feb. de 2020
Hi!
I have 3 vars:
x: Position x of the particle
y: Position y of the particle
v: Velocity of the particle
So... If I plot:
plot(x,y,'.')
I have this :
muestra.jpg
I need the same plot but the colors of each point in a color related to the velocity.... For example the points where the velocity is high red and the points where the velocity is low, blue. Hope it's understood.
How can I do this?
PS: In the plot there are 7200 particles

Respuesta aceptada

Walter Roberson
Walter Roberson el 29 de En. de 2020
Pointsize=10;
scatter(x(:), y(:), Pointsize, z(:))
And you might need a call to colormap() to get the coloring you want.
  1 comentario
Cristián Vera
Cristián Vera el 3 de Feb. de 2020
Thank you so much.... I tried this but didnt use the Pointsize, that's why didnt work.
Thanks again!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Surface and Mesh Plots 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