How can i use Inverse for symbolic variables?
11 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
采纳的回答
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear Algebra 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!