How can i use Inverse for symbolic variables?

조회 수: 5 (최근 30일)
masoud jiryaei
masoud jiryaei 2019년 8월 23일
답변: Alex Mcaulley 2019년 8월 23일
for example : I have this 2-by-2 matrix : [A] = [ a*(x^2) , b(y^3) ; d*(x^2)*y , c ].
and I want to get inverse of the [A].
Is it possible?

채택된 답변

Alex Mcaulley
Alex Mcaulley 2019년 8월 23일
syms x y a b c d
A = [ a*(x^2) , b*(y^3) ; d*(x^2)*y , c ];
inv(A)
ans =
[ c/(- b*d*x^2*y^4 + a*c*x^2), -(b*y^3)/(- b*d*x^2*y^4 + a*c*x^2)]
[ -(d*y)/(- b*d*y^4 + a*c), a/(- b*d*y^4 + a*c)]

추가 답변 (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