Not able to use plot function

1 Ansicht (letzte 30 Tage)
Anshuman S
Anshuman S am 29 Jun. 2019
Bearbeitet: Stephen23 am 29 Jun. 2019
Not able to get anything on plot
t = linspace(0,20);
y10 = -(1.0*(0.013586877477623817727984981165799*exp(- 0.11152477647061971830985915492958*t - 1.0812489766209314019540910922238) + 0.002))/(exp(- 0.11152477647061971830985915492958*t - 1.0812489766209314019540910922238) - 1.0);
figure
plot(t,y10)

Akzeptierte Antwort

Stephen23
Stephen23 am 29 Jun. 2019
Bearbeitet: Stephen23 am 29 Jun. 2019
plot is not the problem, the problem is that you used the wrong division.
Replace
/
with
./

Weitere Antworten (1)

KALYAN ACHARJYA
KALYAN ACHARJYA am 29 Jun. 2019
t=linspace(0,20);
y10=-1*(0.013586877477623817727984981165799*exp(- 0.11152477647061971830985915492958*t-1.0812489766209314019540910922238)+ 0.002)./(exp(- 0.11152477647061971830985915492958*t - 1.0812489766209314019540910922238)-1);
plot(t,y10)

Kategorien

Mehr zu Line Plots 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