How can i integrate this expression which includes matrices?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Volkan Yangin
il 2 Lug 2021
Risposto: Star Strider
il 2 Lug 2021
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,
0 Commenti
Risposta accettata
Star Strider
il 2 Lug 2021
Try this —
A = [1 2; 3 4];
B = [5; 6];
B_d = integral(@(sigma)expm(A.*sigma), 0, 1, 'ArrayValued',1)*B
.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!