help-octave
[Top][All Lists]
Advanced

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

Re: About simplify symbolic expression


From: Carnë Draug
Subject: Re: About simplify symbolic expression
Date: Wed, 19 Oct 2011 17:24:35 +0100

On 19 October 2011 12:04, Rui Pereira <address@hidden> wrote:
> Hello,
>
> I have a question about OCTAVE.
> I normally use Matlab and you can use symbolic toobox which allows you to
> simplify
> symbolic variables.
> Is there in OCTAVE anything similar?
> For instance in Matlab if I write:
>
> "syms x1 x2
> f=sin(x1)*sin(x1)+cos(x1)*cos(x1)+x2*x2*x1
> simplify(f)
> "
> I obtain,
>
> "f =
>
> x1*x2^2 + cos(x1)^2 + sin(x1)^2
>
>
> ans =
>
> x1*x2^2 + 1
>  "
>
> How can I do the same in GNU OCTAVE?
>
> Thanks a lot,
> Rui Pereira

Hi,

There is the symbolic package (part of the octave-forge packages, I'm
CC'ing this to its mailing-list), see
http://octave.sourceforge.net/symbolic/index.html which may do some of
the stuff you want. It doesn't have simplify() though, only expand(),
and it may be missing some others. If you are interested,
contributions for any package are always welcomed.

You should be able to install the package with 'pkg install -forge
symbolic' (if you're using a version older than 3.4, you'll need to
download the package manually from the octave-forge site).

Carnë


reply via email to

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