inverse gaussian

This commit is contained in:
Fabian Sinz
2014-10-24 11:43:19 +02:00
parent f1725cee36
commit 9a9c4b0448
3 changed files with 1191 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
function prob = invgausspdf(x, p)
mu = p(1);
lambda = p(2);
prob = sqrt(lambda/2/pi./x.^3) .* exp(-lambda *(x-mu).^2/2/mu^2./x);

File diff suppressed because it is too large Load Diff