Convert tf to struct
古いコメントを表示
How do I convert a 2x2 tf to 2x2 struct?
1 件のコメント
Steven Lord
2016 年 7 月 9 日
Why do you want to do this?
回答 (2 件)
Amanjeet Pani
2022 年 7 月 13 日
0 投票
you can check this documentation
hope this helps
G11 = tf([1 2], [3 4]);
G12 = tf([3 4], [5 6 7]);
G21 = tf([8], [9 10]);
G22 = tf([11 12 13], [14 15 16 17]);
G = [G11, G12; G21, G22]
S(1,1) = struct(G(1,1));
S(1,2) = struct(G(1,2));
S(2,1) = struct(G(2,1));
S(2,2) = struct(G(2,2));
S
1 件のコメント
Walter Roberson
2022 年 7 月 13 日
Not sure what benefit this gives compared to just indexing the tf object.
カテゴリ
ヘルプ センター および File Exchange で Structures についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!