Why My line doesn't show in a graph

1 Ansicht (letzte 30 Tage)
Joseph Obuya
Joseph Obuya am 5 Mai 2020
Kommentiert: Joseph Obuya am 5 Mai 2020
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);

Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 5 Mai 2020
Bearbeitet: KALYAN ACHARJYA am 5 Mai 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);

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by