help-octave
[Top][All Lists]
Advanced

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

info = 3?


From: huub
Subject: info = 3?
Date: Sat, 06 Jan 2007 21:19:04 +0100
User-agent: Thunderbird 1.5.0.9 (X11/20061222)

Hi,

I wrote a function which with fsolve returns info = 3. What does that indicate?

function y = wiskunde(x)
     y(1) = 2*x(1) + 2;
     y(2) = 2*x(1).^2 + 3*x(1) + 5;
endfunction

octave:26> [x, info] = fsolve ("wiskunde", [-5;5])
x =

    -0.76792
   712.10156

info = 3

Thank you,

Huub



reply via email to

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