Demostrar funciones de transferencia
Considere un sistema lineal de estado estacionario de entrada única/salida única con entrada u
% Script 1: Matlab Code to Find the transfer function
%in both the polynomial (Transfer-Function) and factored (Zero-Pole) forms
numG = [3 5 7] % enter transfer function numerator
denG = [1 3 4 2.5 0.8] % ...and denominator polynomials
% convert to factored (ZP) form
[zz,pp,kk] = tf2zp(numG,denG)
pzmap(numG,denG) % pzmap from TF form
pzmap(pp,zz) % pzmap from ZP form
¡Más Contenido!