octave-maintainers
[Top][All Lists]
Advanced

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

Re: Q: Low hanging fruit?


From: Bill Denney
Subject: Re: Q: Low hanging fruit?
Date: Mon, 17 Mar 2008 06:49:54 -0400
User-agent: Thunderbird 2.0.0.12 (Windows/20080213)

Søren Hauberg wrote:
søn, 16 03 2008 kl. 20:25 -0400, skrev Ben Abbott:
What are your thoughts on maintaining the list of functions?
Why not keep a (static) list of all core functions in matlab, and then
create an Octave script that checks the existence of each function?
Something like:

function print_missing_functions()
  all_matlab_functions = {"abcddim", "abs", "accumarray", ...
                          # And so on. (this list should be read from a
file
                         };
  for n = 1:length(all_matlab_files)
    fun = all_matlab_functions{n};
    if (!exist(fun))
      disp(fun);
    endif
  endfor
endfunction

Wouldn't that be fairly easy from a maintenance point of view?
That's effectively what I did. I'll update what I did a bit (adding the categorization that I put on the webpage) and post it to the wiki.

Have a good day,

Bill


reply via email to

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