# HG changeset patch # User samer # Date 1422874075 0 # Node ID 3ba80c9914ff20147919451fb6abf74dd7ca001d # Parent ba870ed77e3e41a049aa3a794709250d8ef4da11 Minor doc fix, added .class to .hgignore diff -r ba870ed77e3e -r 3ba80c9914ff .hgignore --- a/.hgignore Fri Jan 23 16:50:22 2015 +0000 +++ b/.hgignore Mon Feb 02 10:47:55 2015 +0000 @@ -1,2 +1,3 @@ ^stats .DS_Store$ +.class$ diff -r ba870ed77e3e -r 3ba80c9914ff general/fileutils/write.m --- a/general/fileutils/write.m Fri Jan 23 16:50:22 2015 +0000 +++ b/general/fileutils/write.m Mon Feb 02 10:47:55 2015 +0000 @@ -2,7 +2,5 @@ % write - Write matrix as ascii text file % % write :: matrix, path -> action unit. - save('-ascii','-double',path,'X'); - diff -r ba870ed77e3e -r 3ba80c9914ff general/funutils/@function_handle/le.m --- a/general/funutils/@function_handle/le.m Fri Jan 23 16:50:22 2015 +0000 +++ b/general/funutils/@function_handle/le.m Mon Feb 02 10:47:55 2015 +0000 @@ -2,7 +2,7 @@ % % le :: (A{1:N}=>B{:}), M:natural -> (cell {A{1:M}}, A{M+1:N} -> B{:}). % -% f<=5 is a function which takes any number of arguments but where the first +% f<=M is a function which takes any number of arguments but where the first % argument is assumed to be a cell array of M elements which are distributed % to the first M arguments of f.