hello, everybody, is there any body who can help me to plot this equation in matlab.
y = -5e^2x+3e^x+3cosx+sinx
thanks.

댓글 수: 1

Renato SL
Renato SL 2019년 9월 19일
I think the documentation of the plot function (here) will help a lot.

댓글을 달려면 로그인하십시오.

 채택된 답변

Stephan
Stephan 2019년 9월 19일
편집: Stephan 2019년 9월 19일

0 개 추천

y = @(x) -5.*exp(2.*x) + 3.*exp(x) + 3.*cos(x) + sin(x);
fplot(y,[-20 1],'b-',"LineWidth",2)

추가 답변 (0개)

카테고리

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

질문:

2019년 9월 19일

댓글:

2019년 9월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by