I want to write this transfer function (0.7/s^2)*sin(0.05) in MATLAB code, but sine make it complicated. Kindly, how can I make that?

1 vue (au cours des 30 derniers jours)
Can I write it as in this code?
%code
s=tf('s')
g=(0.7/s^2)*sin(0.05)
Thanks

Réponse acceptée

Star Strider
Star Strider le 22 Jan 2022
Since the sin call creates a constant and is not itself a function of ‘s’, evaluate it first and then just multiply it as with any other constant —
s=tf('s');
m = sin(0.05)
m = 0.0500
g=(0.7/s^2)*m
g = 0.03499 ------- s^2 Continuous-time transfer function.
figure
bode(g)
grid
.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by