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

1 visualización (últimos 30 días)
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!

Respuesta aceptada

Paul
Paul el 16 de Feb. de 2022
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 comentarios
Walter Roberson
Walter Roberson el 16 de Feb. de 2022
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 el 18 de Feb. de 2022
Editada: Paul el 19 de Feb. de 2022
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Symbolic Variables, Expressions, Functions, and Preferences en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by