how to plot different R0 value in single graph
3 ビュー (過去 30 日間)
古いコメントを表示
i want to plot for
R0= lembda*epslon/(b+gama)*(b+epslon)
R=Rp+Rq= p*b/(b+epslon) +q*b*epslon/(b+gama)(b+epslon)
i want to plot between R and R0
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2022 年 1 月 24 日
編集済み: KALYAN ACHARJYA
2022 年 1 月 24 日
for i=1:length(...)
Ro= ..%One data change, which allow to change the Ro, note that it must be an 1D array
R=p*b/(b+epslon)+q*b*epslon/(b+gama)(b+epslon);
plot(R,Ro);
hold on;
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!