Re: [sympy] Output sympy equation to word using mathml

2016-12-05 Thread Denis Akhiyarov
Not cross-posting from SO: WORD supports LATEX, so does SYMPY. Here are more details: http://superuser.com/a/509805/299586 -- 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 emai

[sympy] Trouble using lambdify

2016-12-05 Thread Denis Akhiyarov
You need to unpack your x0 with * syntax. So test(*x0). -- 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 sympy+unsubscr...@googlegroups.com. To post to this group, send

Re: [sympy] Trouble using lambdify

2016-12-05 Thread Aaron Meurer
If you need lambdify to take a single argument, which unpacks to the variables, you can pass a nested tuple, like lambdify(((la1, la2, la3, la4, la5),), steadystate) On Mon, Dec 5, 2016 at 4:13 AM, Denis Akhiyarov wrote: > You need to unpack your x0 with * syntax. > > So test(*x0). > > -- > You

Re: [sympy] Trouble using lambdify

2016-12-05 Thread Eduardo Rivera
Thank you both, I fixed it by using a "wrapper" function that yielded the tuples, and to make it work I needed the "unpack" tip from Denis. Next time I try the nested tuples solution, I had no idea that could be done! Regards On Monday, December 5, 2016 at 4:04:29 PM UTC-3, Aaron Meurer wrote: