Borrar filtros
Borrar filtros

Change number of arrows in quiver-plot

36 visualizaciones (últimos 30 días)
Sivert van Mourik
Sivert van Mourik el 18 de Abr. de 2018
Respondida: Nasir Mehmood el 1 de Abr. de 2021
I have made a quiver-plot with the function
quiver(x,y,u,v)
Where x,y,u and v all are 201*194 matrices, so I end up with 38 994 arrows. How do I choose only a few of the arrows so that my plot won't be so messy?

Respuestas (1)

Nasir Mehmood
Nasir Mehmood el 1 de Abr. de 2021
You may try following combination with different values of "sc" parameter
sc = 10; % choose any value suitable for required arrows
quiver(x(1:sc:end,1:sc:end), y(1:sc:end,1:sc:end), u(1:sc:end,1:sc:end), v(1:sc:end,1:sc:end))

Categorías

Más información sobre Vector Fields 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