view general/numerical/scalar/hypdecay.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents db7f4afd27c5
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