annotate general/funutils/@function_handle/private/acount.m @ 44:3cedfd4549ef

Code added since initial check in.
author samer
date Tue, 13 Jan 2015 14:03:17 +0000
parents ae596261e75f
children
rev   line source
samer@42 1 function n=acount(m,k,j),
samer@42 2 if nargin<3, j=0; end
samer@42 3 if m<j || m>k, n=k+1; else n=m; end; end