extract num and den from matrix transfer function
Afficher commentaires plus anciens
how to use numerator and denominator (N,D) of the output transfer function yv. where yv is 16 tranfer functions. i want to see N and D and use them in another process.
for i=1:4
for j=1:4
gvi(i,j)=tf(N(i,:),D(j,:))
yv(i,j)=series(yc,gvi(i,j))
end
end
[N,D]= tfdata(yv)%%%% this line doesn't show the content of N and D
Réponses (1)
madhan ravi
le 6 Août 2020
Modifié(e) : madhan ravi
le 6 Août 2020
0 votes
Use it inside the loops, preallocation is recommended for the variables.
4 commentaires
msh jgtu
le 6 Août 2020
madhan ravi
le 6 Août 2020
ctr = 0;
[gvi, yv, N, D] = deal(cell(4*4, 1));
for ii = 1 : 4
for jj = 1 : 4
ctr = ctr + 1;
gvi{ctr} = tf(N(ii,:),D(jj,:))
yv{ctr} = series(yc, gvi{ctr})
[N{ctr}, D{ctr}]= tfdata(yv)
end
end
celldisp(N)
celldisp(D)
msh jgtu
le 6 Août 2020
madhan ravi
le 6 Août 2020
Modifié(e) : madhan ravi
le 6 Août 2020
Without knowing the missing variables , can’t help further.
Catégories
En savoir plus sur Dynamic System Models 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!