フィルターのクリア

gradient arrows plot in matlab

5 ビュー (過去 30 日間)
fima v
fima v 2023 年 5 月 22 日
コメント済み: fima v 2023 年 5 月 24 日
Hello, the code bellow creates a shape as shown bellow.How ever i would like to convert this plot into gradient arrows shape as shown bellow.
is it possible in matlab?
Thanks.
a=0.819*10^(-3);
b=2.73*10^(-3);
Vo=15;
rho=linspace(a,b,100);
%Updated t
t=linspace(0,2*pi,360);
[rr,tt]=meshgrid(rho,t);
func_grid=Vo*(b/a)*(1./rr);
%Modify the inputs to surf to obtain a polar plot
surf(rr.*sin(tt),rr.*cos(tt),func_grid)
shading interp
colorbar
%change view as per requirement
view(2)

採用された回答

KSSV
KSSV 2023 年 5 月 22 日
a=0.819*10^(-3);
b=2.73*10^(-3);
Vo=15;
rho=linspace(a,b,100);
%Updated t
t=linspace(0,2*pi,360);
[rr,tt]=meshgrid(rho,t);
func_grid=Vo*(b/a)*(1./rr);
[u,v] = gradient(func_grid) ;
%Modify the inputs to surf to obtain a polar plot
pcolor(rr.*sin(tt),rr.*cos(tt),func_grid)
shading interp
colorbar
hold on
quiver(rr.*sin(tt),rr.*cos(tt),v,u,'k')
  1 件のコメント
fima v
fima v 2023 年 5 月 24 日
Hello, How can i make the arrow density less and array size larger.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePolar Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by