The beginning of my graph is getting the wrong values. values for x=20,25 and 30 are correct. can someone help?

조회 수: 1 (최근 30일)
x=0:5:30;
y=(110)*x/(5+x).*exp((-0.8*x)/8);
plot(x,y)

답변 (1개)

Walter Roberson
Walter Roberson 2021년 10월 25일
x=0:5:30;
y = (110) .* x ./ (5+x) .* exp((-0.8*x)/8);
plot(x,y)

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by