Denominator of the bayesian operator using quadratic loss function and exponential prior distribution (heavy tail)
0001 % Denominator of the bayesian operator using 0002 % quadratic loss function and exponential prior distribution (heavy tail) 0003 0004 function val = blsdenom(c,y,s,p,sigman) 0005 0006 val = exp(- ( (((y-c).^2)/(2*sigman^2)) + abs(c/s).^p) );