How to double the x(t) with transfer Functions to get y(t)
2 views (last 30 days)
Show older comments
Hello,
I want to double x(t)*G(s) to get y(t) , How to do it in Matlab.
Thanks in advance
1 Comment
Star Strider
on 13 Jul 2021
That specific result does not appear to be an option:
syms s t
G(s) = 0.5 / (0.04*s^3 + 0.04*s^2 + s)
g(t) = ilaplace(G,s,t)
g = vpa(g,5)
.
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!