plotting linear differential equations and using a bode plot for amplitude and frequency
4 views (last 30 days)
Show older comments
Tiffany So
on 24 Jun 2022
Edited: Sulaymon Eshkabilov
on 24 Jun 2022
I have two linear differential equations
a) 1.896(dy(t)/dt) = x(t)
b) 

I am having issues correctly inputting this into matlab to be able to plot this on a bode amplitude and frequency diagram.
Accepted Answer
Sulaymon Eshkabilov
on 24 Jun 2022
It is a quite straightforward exercise and no need to solve for an analytical solution. Convert to "s" domain (Laplace transform) and create tf, then use bode(). Your exercise problems are not sufficiently defined.
E.g. (b) Assuming "0" initial conditions,
TF_b = tf(130.19, [1 8.22 130.19]);
bode(TF_b)
2 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!