How to insert a time varying matrix in simulink?

10 ビュー (過去 30 日間)
Linee Teh
Linee Teh 2020 年 4 月 23 日
コメント済み: Ameer Hamza 2020 年 4 月 26 日
The figure below is my state-space equation where input matrix B and gain K are with size 9x6x100 and 6x9x100. The values of B and K are taken from the workspace in my matlab coding.
How can I assign the value of B and K into the system one by one?
For example, used B(9x6x1) & K(6x9x1) then B(9x6x2) & K(6x9x2) then B(9x6x3) & K(6x9x3) until B(9x6x100) & K(6x9x100).
I am really looking for help and thank you very much!
  2 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 4 月 23 日
After how much simulation time do you want to move to the next matrix?
Linee Teh
Linee Teh 2020 年 4 月 24 日
Let say for t = 0:1:100s, mean that the system will have different B & K every second.

サインインしてコメントする。

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 24 日
The attached file (saved in R2020a) shows an easy way to import a time-varying matrix in such a way. Define the matrices in base workspace by running these lines
B = rand(9,6,100);
K = rand(6,9,100);
  24 件のコメント
Linee Teh
Linee Teh 2020 年 4 月 26 日
Thank you once again!!!
Ameer Hamza
Ameer Hamza 2020 年 4 月 26 日
Glad to be of help.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTrimming and Linearization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by