How can i use Inverse for symbolic variables?

4 visualizaciones (últimos 30 días)
masoud jiryaei
masoud jiryaei el 23 de Ag. de 2019
Respondida: Alex Mcaulley el 23 de Ag. de 2019
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?

Respuesta aceptada

Alex Mcaulley
Alex Mcaulley el 23 de Ag. de 2019
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)]

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