extract num and den from matrix transfer function
4 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
madhan ravi
2020 年 8 月 6 日
編集済み: madhan ravi
2020 年 8 月 6 日
Use it inside the loops, preallocation is recommended for the variables.
4 件のコメント
madhan ravi
2020 年 8 月 6 日
編集済み: madhan ravi
2020 年 8 月 6 日
Without knowing the missing variables , can’t help further.
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!