Why My line doesn't show in a graph

1 view (last 30 days)
I have the following code s=0.7 L=0.4 T=0.2 l=0.1 d=0.025 m=0.035 t=0.2 O-(0.5:0.1:1.0); R=s*L*(T+l+d+m)./(m*(T+d+m+t)*(T+l+d+m)-(t*O)); plot(R,O);

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 5 May 2020
Edited: KALYAN ACHARJYA on 5 May 2020
s=0.7;
L=0.4;
T=0.2;
l=0.1;
d=0.025;
m=0.035;
t=0.2;
O=0.5:0.1:1;
R=s*L*(T+l+d+m)./(m*(T+d+m+t)*(T+l+d+m)-(t*O));
plot(R,O);

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!