Mercurial > hg > ishara
diff general/funutils/@function_handle/foreach.m @ 15:19ec801ee487
Bug fix.
author | samer |
---|---|
date | Wed, 16 Jan 2013 12:17:09 +0000 |
parents | 03694e5c8365 |
children |
line wrap: on
line diff
--- a/general/funutils/@function_handle/foreach.m Wed Jan 16 12:14:39 2013 +0000 +++ b/general/funutils/@function_handle/foreach.m Wed Jan 16 12:17:09 2013 +0000 @@ -4,4 +4,4 @@ % foreach :: (A=>void), cells(A) => void. if nargin>2, error('Options for foreach no longer supported'); end -for i=1:numel(X), f(x{i}); end +for i=1:numel(X), f(X{i}); end