필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
Ceasar_Ullrich9
Ceasar_Ullrich9 2020년 2월 4일
답변: fred ssemwogerere 2020년 2월 4일
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
fred ssemwogerere 2020년 2월 4일
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