syms s ;
t = 0:0.1:1
ys =((35+4*s)/(s^2+5*s))
yspf = partfrac (ys)
yt= ilaplace (yspf)
plot(t,yt)

 채택된 답변

KSSV
KSSV 2017년 9월 27일

0 개 추천

syms s ;
t = 0:0.1:1 ;
ys =((35+4*s)/(s^2+5*s)) ;
yspf = partfrac (ys) ;
yt= ilaplace (yspf) ;
y = double(subs(yt,t)) ;
plot(t,y)
YOu have to substitute t in yt and then convert it to double to plot.

댓글 수: 1

MINATI
MINATI 2018년 12월 18일
Can it be possible to draw solution of coupled PDEs with two independent variable x,t
Pl. reply me on minatipatra456@gmail.com

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

추가 답변 (0개)

카테고리

질문:

2017년 9월 27일

댓글:

2018년 12월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by