plot the exp function
조회 수: 3 (최근 30일)
이전 댓글 표시

I'd like to draw graph like this with using plot, not ezplot.
I've tried several expression but not worked.
댓글 수: 0
채택된 답변
Birdman
2020년 4월 1일
syms y(t)
eq=diff(y,2)+13*diff(y)+40*y==4;
Dy=diff(y);
Y(t)=dsolve(eq,[y(0)==0 Dy(0)==0])
t=0:0.001:0.9;
plot(t,Y(t))
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Particle & Nuclear Physics에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!