octave-maintainers
[Top][All Lists]
Advanced

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

Re: Q: Low hanging fruit?


From: Søren Hauberg
Subject: Re: Q: Low hanging fruit?
Date: Mon, 17 Mar 2008 08:14:07 +0100

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?

Søren 



reply via email to

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