view general/funutils/@function_handle/power.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +0000
parents c388f1c70669
children
line wrap: on
line source
% mpower - apply function to arguments in cell array
% 
% mpower :: (A{:}=>B{:}), A{:} -> B{:}.
function varargout=mpower(f,args)
	[varargout{1:nargout}]=f(args{:});