help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: quad partition ... you call maxima inside octave?


From: antonio palestrini
Subject: Re: quad partition ... you call maxima inside octave?
Date: Thu, 28 Dec 2006 16:35:36 +0100

2006/12/27, angelo rossi <address@hidden>:

Please, can you
explain me how to call maxima inside octave
or tell me where I can download the function?

Happy to help you,
the function is just a system call:

function maxima(str)
                                # Evaluate a maxima comand
                                #
                                # example: maxima ("diff(x^2,x);")
 s = ["maxima --batch-string=","'",str,"'"];
 system(s);
endfunction

HAPPY NEW YEAR!
Antonio


--
Prof. Antonio Palestrini
DSGSS - University of Teramo, Italy
e-mail: address@hidden


reply via email to

[Prev in Thread] Current Thread [Next in Thread]