comparison 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
comparison
equal deleted inserted replaced
43:62e31e7980e6 44:3cedfd4549ef
1 % mldivide - Bind one argument to a function using Matlab closure
2 %
3 % mrdivide ::
4 % A{1} ~'first argument',
5 % (A{1:N}->B{1:L}) ~'func from N inputs to L outputs'
6 % -> (A{2:N}->B{1:L}) ~'func from remaining arguments to returns'.
7
8 function g=mldivide(x,f), g=mrdivide(f,x);