octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #55089] dev fsolve complains about unrecognize


From: A.R. Burgers
Subject: [Octave-bug-tracker] [bug #55089] dev fsolve complains about unrecognized options
Date: Sat, 24 Nov 2018 17:16:17 -0500 (EST)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299

URL:
  <https://savannah.gnu.org/bugs/?55089>

                 Summary: dev fsolve complains about unrecognized options
                 Project: GNU Octave
            Submitted by: arb
            Submitted on: Sat 24 Nov 2018 10:16:15 PM UTC
                Category: Octave Function
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Regression
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: Any

    _______________________________________________________

Details:

finding a root of this function bg_f:


function [f, jac] = bg_f(x)
  f   = x;
  jac = 1;
end


with fsolve in this script:


ver = version
opts = optimset('Jacobian', 'on', 'Updating', 'off');
sol = fsolve(@bg_f, 1, opts)


produces on 4.1.1:


ver = 4.4.1
sol = 0


on dev, the correct solution, but with some warnings:


ver = 5.0.0
warning: optimget: unrecognized option: OutputFcn
warning: called from
    optimget at line 45 column 5
    fsolve at line 200 column 10
    bg at line 3 column 5
warning: optimget: unrecognized option: TypicalX
warning: called from
    optimget at line 45 column 5
    fsolve at line 206 column 12
    bg at line 3 column 5
sol = 0






    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?55089>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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