필터 지우기
필터 지우기

Is there any way to represent symbolic variables as I write from left to right?

조회 수: 1 (최근 30일)
As you know in Matrix manipulation you're not allowed to change the order of Matrix. for example AB # BA (the commulative law is usually broken).
I was wondering if there was a way to represent the below matrix multiplication?
How can I modify this simple code to output the correct matrix ruls? ie change (BC/A) to (C/A)*B
syms I A B C D
sympref('MatrixWithSquareBrackets',true);
E=[1 0 ; -C/A 1]
E = 
F=[A B ; C D]
F = 
X=E*F
X = 
Thanks a bunch!

채택된 답변

Paul
Paul 2022년 2월 16일
Since R2021a, one can define symbolic matrices. I haven't really used them too much and so don't know how to get any further than what is shown below. I'm surprised Matlab won't carry out the multiplication of the block matrices. Maybe there is another command that will do so.
syms I [2 2] matrix
syms A [2 2] matrix
syms B [2 2] matrix
syms C [2 2] matrix
syms D [2 2] matrix
E = [I zeros(2);-C*inv(A) I]
E = 
F = [A B;C D]
F = 
G = E*F
G = 
  댓글 수: 5
Walter Roberson
Walter Roberson 2022년 2월 16일
You cannot. Block operations like that are not supported.
Perhaps I should not say "cannot", but rather "no method is provided". There might hypothetically be some way involving using mapSymType or similar operations.
Paul
Paul 2022년 2월 18일
편집: Paul 2022년 2월 19일
That's too bad that block matrix multiplication isn't supported. Maybe that's coming in a future release.
It would also be cool if the identity matrix and the zero matrix could be created as special symmatrix constants with specified dimensions to be used in equations such as above.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Variables, Expressions, Functions, and Preferences에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by