Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@math/fitPrior.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Function fitpriors fits the pdf computed from a pest object. % % It returns matrix (# of params x 3) with the mean, sigma and % % normalization constant for each parameter at each column. -Nikos- % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function params = fitPrior(prior,nparam,chain,bins) params = []; for ii=1:nparam x = linspace(min(prior(:,2*ii-1)),max(prior(:,2*ii-1)),bins); y = normpdf(x,mean(chain(:,ii)),std(chain(:,ii))); s=sum(y); params(ii,:) = [mean(chain(:,ii)) std(chain(:,ii)) s]; end end