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