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
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 个)

类别

Community Treasure Hunt

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

Start Hunting!

Translated by