How do I compute the transfer matrices of the coprime factorisation?
16 ビュー (過去 30 日間)
古いコメントを表示
I would like to simply calculate the 2 transfer matrices of the left coprime factorisation of a state-space system K. However, when I evaluate ncfmr to calculate this factorisation as follows (K has 2 inputs, 1 output and 3 states):
K = ss(Ak,Bk,Ck,Dk);
[GRED, redinfo] = ncfmr(K, 3);
the resulting factorisation redinfo.GL is returned as a state-space system with 3 inputs, 1 output and 3 states. What is the relationship between this system and the 2 transfer matrices of the factorisation I am looking for?
Passing an equivalent transfer function to ncfmr yields the same result. Note that I specified order 3 as that is the number of states in the original system, is this correct usage to calculate the factorisation of the original system?
Thanks!
0 件のコメント
回答 (1 件)
Maneet Kaur Bagga
2025 年 4 月 2 日
Hi,
As per my understanding, your originial system "K" has 2 inputs, 1 output and 3 states and the "redinfo.GL" has 3 inputs which you expected to be 2.
Referring to the MathWorks documentation of "ncfmr" function, it suggests using "reducespec" function instead for computing normalized coprime factorization. Please refer to the following code snippet to compute the factorization :
redinfo = reducespec(K, 'ncf');
GL = redinfo.GL;
ML = redinfo.ML;
For more understanding on how to use the "reducespec" function please refer to the following MathWorks documentation :
Hope this helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Dynamic System Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!