inverse gaussian
This commit is contained in:
6
statistics/matlab/invgausspdf.m
Normal file
6
statistics/matlab/invgausspdf.m
Normal 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);
|
||||
1000
statistics/matlab/isi_data.dat
Normal file
1000
statistics/matlab/isi_data.dat
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user