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

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

[Octave-bug-tracker] [bug #50222] Update list of missing functions


From: Guillaume
Subject: [Octave-bug-tracker] [bug #50222] Update list of missing functions
Date: Fri, 3 Feb 2017 14:58:20 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0

URL:
  <http://savannah.gnu.org/bugs/?50222>

                 Summary: Update list of missing functions
                 Project: GNU Octave
            Submitted by: gyom
            Submitted on: Fri 03 Feb 2017 02:58:19 PM GMT
                Category: Octave Function
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Documentation
                  Status: None
             Assigned to: None
         Originator Name: Guillaume
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: Any

    _______________________________________________________

Details:

Using the 'list' variable from __unimplemented__.m, the following script
detects functions that are now implemented in Octave:

++
for i=1:numel (list)
  try
    evalc (list{i});
    fprintf ("%s\n",list{i});
  catch
    me = lasterror;
    if ~strcmp (me.identifier, "Octave:undefined-function")
      fprintf ("%s\n",list{i});
    endif
  end
endfor
--

The attached diff updates the list accordingly.



    _______________________________________________________

File Attachments:


-------------------------------------------------------
Date: Fri 03 Feb 2017 02:58:19 PM GMT  Name: unimplemented.diff  Size: 1kB  
By: gyom

<http://savannah.gnu.org/bugs/download.php?file_id=39655>

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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