Does this help?
sage: f = maxima("x^2-1")
sage: type(f)
sage: ff = f.sage()
sage: type(ff)
sage: ff.factor()
(x - 1)*(x + 1)
On Tue, Nov 3, 2009 at 3:28 PM, Mikie wrote:
>
> Is there anyway to convert a maxima expression
> ('sage.interfaces.maxima.MaximaElement') to
> ('sage.calculus.Symbo
Yes, David, thanks. I fixed it with repr and SR.
On Nov 3, 1:38 pm, David Joyner wrote:
> Does this help?
>
> sage: f = maxima("x^2-1")
> sage: type(f)
>
> sage: ff = f.sage()
> sage: type(ff)
>
> sage: ff.factor()
> (x - 1)*(x + 1)
>
>
>
> On Tue, Nov 3, 2009 at 3:28 PM, Mikie wrote:
>
> >