6 lines
190 B
Matlab
6 lines
190 B
Matlab
function y = inversegauss( x, m, d )
|
|
% returns the inverse Gauss density with mean isi m and diffusion
|
|
% coefficent d
|
|
y = exp(-(x-m).^2./(4.0*d.*x.*m.^2.0))./sqrt(4.0*pi*d.*x.^3.0);
|
|
end
|