Mercurial > hg > ishara
view general/numerical/hypdecay.m @ 4:e44f49929e56
Adding reorganised general toolbox, now in several subdirectories.
author | samer |
---|---|
date | Sat, 12 Jan 2013 19:21:22 +0000 |
parents | |
children |
line wrap: on
line source
function ret=hypdecay(k,d) % hypdecay - compute interpolation ratio for hyperbolic decay % % hypdecay :: [Size->nonneg], [Size->nonneg] -> [Size->nonneg]. % hypdecay :: [Size->nonneg] -> ([Size->nonneg] -> [Size->nonneg]). % % this gives 'hyperbolic' convergence which is more like % a sort of diffusion by Brownian motion. The trick is % to add a constant to the inverse of each natural parameter, % which is like a temperature or variance. The constant % is like a diffusion constant % % This function supports partial application: if only one % argument is supplied, it returns a function handle. if nargin==2, ret=1./(1+k*d); else ret=@(d)1./(1+k*d); end