Transformig digital transferfct in analog transferfct
이전 댓글 표시
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.
답변 (1개)
% 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)
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!