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

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

[Octave-bug-tracker] [bug #52074] Missing integration functions integral


From: Nicholas Jankowski
Subject: [Octave-bug-tracker] [bug #52074] Missing integration functions integral2, integral3
Date: Sat, 14 Oct 2017 18:52:01 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0

Follow-up Comment #27, bug #52074 (project octave):

last thing, really.  

For David and any others who have to wait on a new version of the Windows
build to use these functions because they call the updated quadcc, below is a
quadcc.m wrapper that you can put in the working folder to 'fake' having a
version that passes both abstol and reltol. obviously it will not follow the
expected tolerance behavior, but otherwise things will run. 


function [retval] = quadcc (f, a, b, varargin)
  
  switch nargin
    case 3
      retval = builtin('quadcc', f, a, b);
    case 4
      retval = builtin('quadcc', f, a, b, varargin{1}(1));
      
    case 5
      retval = builtin('quadcc', f, a, b, varargin{1}(1), varargin{2});
    otherwise
      print_usage;
    endswitch

endfunction



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?52074>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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