help-octave
[Top][All Lists]
Advanced

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

Re: Solving functional nonlinear equation


From: Chengqi Chang
Subject: Re: Solving functional nonlinear equation
Date: Mon, 28 Dec 2009 15:21:02 +0800
User-agent: Opera Mail/10.10 (Win32)

On Mon, 28 Dec 2009 02:03:05 +0800, <address@hidden> wrote:

f(x,y)= (-1/a^2)*(x*y)^(1/a-1)+(1/a)*x^(1/a-1)+(1/a)*y^(1/a-1) =0

x,y here are interdependent. From my point of view,
firstly, you can try to solve it symbolically. If no closed form found, then you can specify some values of y/x and thus solve x/y numerically using fzero

To plot the figure, it is straightforward.
x=linspace(.1,1);y=linspace(.1,1);
[xx,yy]=meshgrid(x,y);
fxy=f(xx,yy);
mesh(xx,yy,fxy);


--
Best Regards!
---------------------------
Sincerely,                      Chengqi Zhang
China Center for Economic Research
Mail: address@hidden
Personal Website: http://macro2.cn


reply via email to

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