How to plot vectors exactly on the edge of another graph?

조회 수: 1 (최근 30일)
Niklas Kurz
Niklas Kurz 2021년 10월 15일
댓글: Niklas Kurz 2021년 10월 17일
The best I've got is expressed by the following:
clear
[u,v] = meshgrid(-2:0.2:2);
f = u.^2+v.^2-1;
[du,dv] = gradient(f);
hold all
g = @(a,b) a.^2+b.^2-1;
fimplicit(g)
D1 = u.^2+v.^2 >1;
D2 = u.^2+v.^2 <1.5;
v(~D1) = NaN;
u(~D2) = NaN;
norm = norm(gradient(f));
quiver(u,v,du./norm,dv./norm,'Color','r')
axis equal
However, the vectors are close to the edge, but not right originating from there. I can't think a straight way around it.

채택된 답변

Matt J
Matt J 2021년 10월 15일
편집: Matt J 2021년 10월 15일
t=linspace(0,360,91); t(end)=0;
u=cosd(t);
v=sind(t);
fimplicit(@(a,b) a.^2+b.^2-1);hold on
quiver(u,v,u,v,'Color','r'); hold off
axis equal
  댓글 수: 1
Niklas Kurz
Niklas Kurz 2021년 10월 17일
Appreciated approch, using the outward second derivat of a circle parametrization.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by