Created
November 1, 2012 19:17
-
-
Save Higgcz/3995814 to your computer and use it in GitHub Desktop.
Log likelihood function (normal distribution)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
covGen = (0.5:0.001:2.5) * 10e2; | |
for s=1:size(covGen,2), | |
L(s) = sum(log(normpdf(measurmentX1, Model.Mean, covGen(s)))); | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment