Skip to content

Instantly share code, notes, and snippets.

@gkhtnk
Created October 29, 2016 09:13
Show Gist options
  • Save gkhtnk/6341766c43cc94668095f44bc8944213 to your computer and use it in GitHub Desktop.
Save gkhtnk/6341766c43cc94668095f44bc8944213 to your computer and use it in GitHub Desktop.
function varargout = Cellfun(varargin)
%% Cellfun <- cellfun
% Avoid to type 'UniformOutput', false
if nargin
if nargout
varargout = cellfun(varargin{:}, 'UniformOutput', false);
else
cellfun(varargin{:}, 'UniformOutput', false);
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment