Transformig digital transferfct in analog transferfct
Afficher commentaires plus anciens
Dear MatLab Community,
is there any function to transform the coefficients of z-transfer functions into the coefficients of a s-transfer function?
I know, that there is one the other way around : the bilinear() fct, but I havent found a similar one for my problem..
Kind regards.
Réponses (1)
Bora Eryilmaz
le 8 Déc 2022
Modifié(e) : Bora Eryilmaz
le 8 Déc 2022
% Discrete transfer function
H = tf([1 -1],[1 1 0.3],0.1)
% Convert to continuous transfer function
Hc = d2c(H)
% And back for confirmation
c2d(Hc,0.1)
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!