Here is function I am using to solve systems of linear equations.

def MSolveSys(syss):
   eqns=eval(syss)
   solns=maxima.solve(syss)
   return solns

Works great in the notebook, but when I put it in a Python script it
rounds the coeficients of the variables and thus produces bad
solutions.

Is it possible to fix it?
Thanx
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to