Mercurial > hg > ishara
view general/funutils/@function_handle/mldivide.m @ 44:3cedfd4549ef
Code added since initial check in.
author | samer |
---|---|
date | Tue, 13 Jan 2015 14:03:17 +0000 |
parents | |
children |
line wrap: on
line source
% mldivide - Bind one argument to a function using Matlab closure % % mrdivide :: % A{1} ~'first argument', % (A{1:N}->B{1:L}) ~'func from N inputs to L outputs' % -> (A{2:N}->B{1:L}) ~'func from remaining arguments to returns'. function g=mldivide(x,f), g=mrdivide(f,x);