extract num and den from matrix transfer function

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

Respuestas (1)

madhan ravi
madhan ravi el 6 de Ag. de 2020
Editada: madhan ravi el 6 de Ag. de 2020

0 votos

Use it inside the loops, preallocation is recommended for the variables.

4 comentarios

msh jgtu
msh jgtu el 6 de Ag. de 2020
I tried to use it inside the loop it gives error
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)
error
Error using tf (line 287)
The values of the "num" and "den" properties must be row vectors or cell arrays of row vectors, where each
vector is nonempty and containing numeric data. Type "help tf.num" or "help tf.den" for more information.
Error in forloop (line 60)
gvi{ctr} = tf(N(ii,:),D(jj,:))
madhan ravi
madhan ravi el 6 de Ag. de 2020
Editada: madhan ravi el 6 de Ag. de 2020
Without knowing the missing variables , can’t help further.

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Preguntada:

el 6 de Ag. de 2020

Editada:

el 6 de Ag. de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by