MATLAB computations on variables?
이전 댓글 표시
Is it possible to conduct MATLAB operations on just a matrix of variables? For example, if I wanted to compute the inverse of matrix
A = [a b; c d]
without assigning any values to any of the 4 variables just to get a general form. Thanks in advance!
답변 (1개)
The symbolic toolbox is great for stuff like this.
syms a b c d
A = [a b;c d]
inv(A)
댓글 수: 1
Caution: the size of the matrix expands quite rapidly for larger matrices.
syms M [4 4]
inv(M)
카테고리
도움말 센터 및 File Exchange에서 Common Operations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

