how to plot different R0 value in single graph

조회 수: 3 (최근 30일)
Ruksana Shaikh
Ruksana Shaikh 2022년 1월 24일
편집: KALYAN ACHARJYA 2022년 1월 24일
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

답변 (1개)

KALYAN ACHARJYA
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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by