Manipulate



>
>
>
>
> ------------------------------
>
> Message: 4
> Date: Fri, 22 Feb 2013 15:12:59 -0000
> From: Jo?o Vieira Gomes <vieiragomes at sapo.pt>
> To: <maxima at math.utexas.edu>
> Subject: Manipulate
> Message-ID: <BA64EBEB2EA246CF950B127B287FA073 at JVGLaptop>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hello all.
>
> Is there any command in maxima similar to the Mathematica function
> "Manipulate"?
>
> Thanks,
> Jo?o



You can do it via Sage.  Try

http://aleph.sagemath.org/?q=8a82fc8a-05da-454d-bfc4-70c47906d7be&lang=sage

for a very basic example.

@interact
def _(n=[0..10]):
    print maxima("expand((x+1)^%s)"%n)

Note that although it uses Sage to interact, the command evaluated, and its
output, are pure Maxima.

Karl-Dieter