Solve a system of differential equations which has blkdiag

2 ビュー (過去 30 日間)
Hoang Vu Huy
Hoang Vu Huy 2023 年 2 月 21 日
移動済み: Torsten 2023 年 2 月 23 日
I want to solve following equation:
with
Matrices A and C are defined.
I want use ode45 to solve, but I don't know to define matrix B.
function dpdt = control_law(t,xe)
global A C
x = xe(1:2*n,1);
y = xe(2*n+1:end,1);
dxdt = Ax +By (????????)
dydt = C*x;
dpdt = [dxdt;dydt];
end
I tried some of the analysis but to no avail

回答 (3 件)

Torsten
Torsten 2023 年 2 月 23 日
移動済み: Torsten 2023 年 2 月 23 日
x = [1;2;3;4;5;6];
x = reshape(x,2,[]);
B = arrayfun(@(i)squeeze(kron(x(:,i).',eye(2))),1:size(x,2),'UniformOutput',0);
C = blkdiag(B{:})
C = 6×12
1 0 2 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 3 0 4 0 0 0 0 0 0 0 0 0 0 3 0 4 0 0 0 0 0 0 0 0 0 0 0 0 5 0 6 0 0 0 0 0 0 0 0 0 0 5 0 6

Luca Ferro
Luca Ferro 2023 年 2 月 21 日
編集済み: Luca Ferro 2023 年 2 月 21 日
given i as identity with coeherent dimensions to x:
blkdiag(x'.*i)
edit: to create i use the eye(n) function, where n is the dimensions
  1 件のコメント
Hoang Vu Huy
Hoang Vu Huy 2023 年 2 月 22 日
Sorry, I don't understand your idea. Please re-explain

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


Torsten
Torsten 2023 年 2 月 21 日
移動済み: Torsten 2023 年 2 月 21 日
You can't supply it as a global, but only pass it as a function handle:
B = @(x) blkdiag(kron(x.',eye(2)))
Or you define it as
B = blkdiag(kron(x.',eye(2)))
in the function.
  1 件のコメント
Hoang Vu Huy
Hoang Vu Huy 2023 年 2 月 22 日
I try but I think it's not true
For example, , that mean
I want to creat matrix , so B equals
But, I run your code B = blkdiag(kron(x.',eye(2))), B equals:

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

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by