Mercurial > hg > ishara
view general/numerical/ratesched.m @ 6:0ce3c2070089
Removed duplicate code and fixed doc in timed_action.
author | samer |
---|---|
date | Mon, 14 Jan 2013 14:33:37 +0000 |
parents | e44f49929e56 |
children |
line wrap: on
line source
function rates=ratesched(a,b,c) % rates=ratesched(a,b,c): learning rate schedule % a: start % b: time to half % c: number of steps rates=b*a./(b:(b+c-1));