view general/funutils/@function_handle/rdivide.m @ 39:c388f1c70669

Updated documentation and fixed some bugs in function algebra
author samer
date Tue, 29 Jan 2013 17:02:00 +0000
parents 9d24b616bb06
children 79632e7bcb52
line wrap: on
line source
% rdivide - Bind arguments to a function using Matlab closure
%
% rdivide :: 
%    (A{1:N}=>B{:})
%    A{1}, ..., A{M}                 ~'M<=N input arguments of the correct types'
% -> (A{M+1:N}=>B{:}).

function g=rdivide(f,args)
	g=@(varargin)f(args{:},varargin{:});
end