How can i integrate this expression which includes matrices?
조회 수: 1 (최근 30일)
이전 댓글 표시
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,![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/672088/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/672088/image.png)
댓글 수: 0
채택된 답변
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
.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!