How to move quiver arrows within the semi-circle
Show older comments
x=0:0.01:1;
y=0:0.01:1;
x=x.^2
y=-x.*y
c=10
quiver(x(1:c:end),y(1:c:end))
hold on
y=-x+1
plot(x,y)
y=sqrt(1-x.^2)
plot(x,y)
xlim([0 12])
ylim([0 1])

This code gave me this plot.
However, I want to obtain a plot something like this:

Sorry for the bad explanation.
Is it possible to move the quiver arrows to fit in the semi-circle equation?
Accepted Answer
More Answers (0)
Categories
Find more on Vector Fields in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
