How to make my quiver plot readable?
Show older comments
I have the vector field (U,V) of size 361x361 that I want to plot as a quiver plot.
For now, the vector field is just unreadable because there are too many arrows plotted and the arrows are way too small (see image below).
How can I plot fewer arrows on my quiver plot and make the arrows bigger so that we can understand the figure?
I have attached the data for U and V.
Here is my code:
figure(1)
clf;
hold on;
h1 = quiver(U,V,'k');
set(h1,'AutoScale','on', 'AutoScaleFactor', 5)
axis equal square
set(h1,'MaxHeadSize',10)
set(h1,'LineWidth',1)
xlim([0 360]);
ylim([0 360]);
shading flat;
axis ij;
figure(gcf);

Thank you
Accepted Answer
More Answers (0)
Categories
Find more on Vector Fields in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!