Mercurial > hg > ishara
view general/funutils/@function_handle/private/acount.m @ 53:3ba80c9914ff
Minor doc fix, added .class to .hgignore
author | samer |
---|---|
date | Mon, 02 Feb 2015 10:47:55 +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