No Arrows showing in plot When using quiver

I am unable to getting the arrows in the plot by using the quiver. Plot shows all the calculated data tip values but not showing the arrows.
Code as given below. Please help me for this problem.
[X,Y]=meshgrid(-2.5:0.1:2.5,-2.5:0.1:2.5);
Ur=(1+((Y-X)/2.5)-((X*Y)/(2.5^2)));
for i=1:size(X,1)
for j=1:size(X,2)
Uz1(i,j)=(3-(3.75/X(i,j)));
end
end
figure(1)
q=quiver(X,Y,Ur,Uz1,'ShowArrowHead','on','LineWidth',1,'MarkerSize',3);
q.Color = 'red';
q.AutoScaleFactor='1';

 採用された回答

VBBV
VBBV 2022 年 11 月 8 日
編集済み: VBBV 2022 年 11 月 8 日

0 投票

[X,Y]=meshgrid(linspace(-2.5,2.5,10));
Ur=1+((Y-X)/2.5)-((X.*Y)/2.5^2);
for i=1:size(X,1)
for j=1:size(X,1)
Uz1(i,j)=(3-(3.75/X(i,j)));
end
end
figure(1)
q=quiver(X,Y,Ur,Uz1,'LineWidth',1);
q.Color = 'red';
If you use autoscale factor along with arrowhead on it will distort the quiver diagram and misintrepret the plot.

7 件のコメント

ASHISH CHAUDHARI
ASHISH CHAUDHARI 2022 年 11 月 9 日
Thank you very much for answer and prompt reply.
VBBV
VBBV 2022 年 11 月 9 日
編集済み: VBBV 2022 年 11 月 9 日
The problem that quiver function may have is that when you specify an interval width(closely spaced)for an X or Y range , the resulting values produced by expressions for U or V may not appear due to grid mismatch and quiver plots are usually vectors with a specific direction. Its safer if you use default intervals produced by functions such as linspace or directly by a : operator available in Matlab.
If it solved your problem please accept the answer :)
ASHISH CHAUDHARI
ASHISH CHAUDHARI 2022 年 11 月 9 日
Thank you sir for your responce. Similar problem is occuring when using closely spaced interval for meshgrid. I have one dought about, how to use the quiver function for different range for X and Y grid? as an example:
[X,Y]=meshgrid(-5:0.1:5,0:0.1:5);
VBBV
VBBV 2022 年 11 月 11 日
[X,Y]=meshgrid(-5:0.1:5,0:0.1:5);
U = sin(Y);
V = cos(X); %e.g from doc ref page
quiver(X,Y,U,V)
ASHISH CHAUDHARI
ASHISH CHAUDHARI 2022 年 11 月 12 日
Thank you sir.
VBBV
VBBV 2022 年 11 月 12 日
編集済み: VBBV 2022 年 11 月 14 日
If it solved your problem, pls accept the answer
ASHISH CHAUDHARI
ASHISH CHAUDHARI 2022 年 11 月 14 日
Thank you for your humble responce. It has been solved my problem with your solution.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeVector Fields についてさらに検索

質問済み:

2022 年 11 月 8 日

編集済み:

2022 年 11 月 14 日

Community Treasure Hunt

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

Start Hunting!

Translated by