Mercurial > hg > ishara
view 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 |
line wrap: on
line source
function n=acount(m,k,j), if nargin<3, j=0; end if m<j || m>k, n=k+1; else n=m; end; end