Borrar filtros
Borrar filtros

how to get a plot quiver with velocity magnitude

3 visualizaciones (últimos 30 días)
bharathi Dasari
bharathi Dasari el 24 de Nov. de 2019
Comentada: Daniele Morandi el 25 de Nov. de 2022
How to get a quiver plot with change in color basing on velocity vector magnitude

Respuestas (1)

Priyanshu Mishra
Priyanshu Mishra el 27 de Nov. de 2019
Hi Bharathi,
You can use 'color' linespec to change the color of your velocity vectors. For your reference I have written a code. You may take help of it.
[x,y] = meshgrid(0:0.2:2,0:0.2:2);
u = cos(x).*y;
v = sin(x).*y;
figure
quiver(x,y,u,v,'color',[1 0 0])
The above code will give you red color velocity vectors. By changing the linespec for eg. [1 1 0], it will give you yellow color.
  1 comentario
Daniele Morandi
Daniele Morandi el 25 de Nov. de 2022
Hi Priyanshu,
I guess that Bharathi meant that color could change depending on velocity magnitude, similarly to what happen in contour plot.
Colorbar should help reading magnitude related to color, if this is possible

Iniciar sesión para comentar.

Categorías

Más información sobre Vector Fields en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by