How can i integrate this expression which includes matrices?

1 回表示 (過去 30 日間)
Volkan Yangin
Volkan Yangin 2021 年 7 月 2 日
回答済み: Star Strider 2021 年 7 月 2 日
Hi,
I have two matrices and will use them to have discrete form of state space. For this purpose, i have to implement some of integration procedures.
My A and B matrices are [ 1 2 ; 3 4] and [ 5 ; 6] respectively. T equals to 1.
How can i find the result of this formula?
Thanks,

採用された回答

Star Strider
Star Strider 2021 年 7 月 2 日
Try this —
A = [1 2; 3 4];
B = [5; 6];
B_d = integral(@(sigma)expm(A.*sigma), 0, 1, 'ArrayValued',1)*B
B_d = 2×1
132.4387 285.4127
See the documentation on integral for details.
.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by