extract num and den from matrix transfer function
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuestas (1)
madhan ravi
el 6 de Ag. de 2020
Editada: madhan ravi
el 6 de Ag. de 2020
Use it inside the loops, preallocation is recommended for the variables.
4 comentarios
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.
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!