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)

 채택된 답변

Stephen23
Stephen23 2019년 6월 29일
편집: Stephen23 2019년 6월 29일

1 개 추천

plot is not the problem, the problem is that you used the wrong division.
Replace
/
with
./

추가 답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 6월 29일

1 개 추천

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)

카테고리

도움말 센터File Exchange에서 Annotations에 대해 자세히 알아보기

태그

질문:

2019년 6월 29일

편집:

2019년 6월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by