Find solution for two matrix, ome has symbolic unknown in it

1 次查看(过去 30 天)
Basically I have a matrix
A = [0 -1 -2; 2 1 2; 0 0 0 ]
then three syms
syms a
syms b
syms c
and another matrix, named answer
answer =
[ 0, (2*(a - b))/(b - a + c) - (2*c)/(b - a + c), b*(c/(b - a + c) - (a - b)/(b - a + c)) - a*((2*c)/(b - a + c) - (2*(a - b))/(b - a + c)) + c*((2*c)/(b - a + c) - (2*(a - b))/(b - a + c))]
[ b/(b - a + c) - (a - c)/(b - a + c), b/(b - a + c) - (a - c)/(b - a + c), a*(b/(b - a + c) - (a - c)/(b - a + c)) - b*(b/(2*(b - a + c)) - (a - c)/(2*(b - a + c)))]
[ 0, 0, 0]
I would like to find values for a,b,c so that matrix A equals matrix answer
How can I do that?
Thanks

回答(1 个)

fred  ssemwogerere
One option is to use the "solve" function, with independent asssignment of equations in your matrix: "answer" to each value of the matrix: "A" . It should work nicely.

类别

Help CenterFile Exchange 中查找有关 Number Theory 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by