フィルターのクリア

plot when a value of zero makes issue

2 ビュー (過去 30 日間)
H-M
H-M 2020 年 8 月 27 日
編集済み: H-M 2020 年 8 月 28 日
my code below is supposed to plot different graph with different value of t:
many thanks
c=2;
nu = 1*1e-6;
r = linspace(0,100);
t=[1/2 1 2 6 10 20 50 ];
for count=1:7
v = c * (1-exp(-r.^2./(4*nu*t(count))))./r;
plot(r,v,'o-')
legend([' t= ',num2str(t(count))])
legend show
ylabel('v(m/sec)')
xlabel('r(m)')
grid on
hold on
end

採用された回答

David Hill
David Hill 2020 年 8 月 27 日
If you change your nu to something more reasonable, it provides the graphs dynamics you are looking for.
nu=10;
  4 件のコメント
David Hill
David Hill 2020 年 8 月 28 日
No reason to execute hold commend multiple times in the loop. Once is enough.
H-M
H-M 2020 年 8 月 28 日
Thank you so much David

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by