Hallo,

I have been puzzled by this question for few days.

I want to solve a equation system and  get a symbolic result. The equations 
system looks like

S_a = [ s_a11, s_a12 ; s_a21, s_a22 ]
S_b = [ s_b11, s_b12 ; s_b21, s_b22 ]
S_c = [ s_c11, s_c12 ;  s_c21, s_c22 ]

S_a, S_b, S_c are known matrix with complex Value

eqns = (
              S_a*[a1; a2] = [b1; b2], 
              S_b*[a3; a4] = [b3; b4],
              S_c*[a5; a6] = [b5; b6], 

              a2 = b3, a3 = b2,  
              a4 = b5, a5 == b4, 

             [ a2, a3, a4, a5, b1, b2, b3, b4, b5, b6]    # unknown       
          )

              
in Matlab. It is easy to list all equations in solve()- function. But not 
so easy for sympy. 

Could someone help me?

Thanks in Advace

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/sympy.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/26d8a4b9-483f-4946-8165-f1a8a72837d8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to