solving the Transfer function
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Abhinandan Angadi
il 18 Giu 2021
Commentato: Abhinandan Angadi
il 18 Giu 2021

how to use tf and zpk commands for the above condition. Can anyone help me?
0 Commenti
Risposta accettata
Chunru
il 18 Giu 2021
% Divide G(s) into two parts (or manually simplify it)
h1 = tf([0.02 1], [0.005 1 0 0 0]);
h2 = tf([0.025 1], [0.001 1]);
g = h1*h2
zpk(g)
doc tf or doc zpk for more details
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dynamic System Models in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!