help-octave
[Top][All Lists]
Advanced

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

Re: Numerical solution of a symbolic equation octave


From: Andrei Bobrov
Subject: Re: Numerical solution of a symbolic equation octave
Date: Wed, 10 Jun 2015 11:12:12 -0700 (PDT)

syms p v l g
p=2;
v=p^2+3;
g=v+l^2;
l=v^2+p*2+8*l+g;
z=l==v^2+p*2+l^2;
out = vpa(solve(z,l, 1));

or

out = double(solve(z,l, 1));



--
View this message in context: 
http://octave.1599824.n4.nabble.com/Numerical-solution-of-a-symbolic-equation-octave-tp4670793p4670797.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

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