Created
June 18, 2017 16:19
-
-
Save aneutron/46172f0c03f12878b6e65d806b11fab8 to your computer and use it in GitHub Desktop.
This file contains 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
function [t a prob] = MH_routine(theta,p,proposal_PDF,sample_from_proposal_PDF) | |
% Metropolis-Hastings algorithm routine: | |
theta_ast = sample_from_proposal_PDF(theta); % sampling from the proposal PDF with media the current state | |
alpha = (p(theta_ast)*proposal_PDF(theta,theta_ast))/... % Ratio of the density at the | |
(p(theta) *proposal_PDF(theta_ast,theta)); % candidate (theta_ast) and current (theta) points | |
if rand <= min(alpha,1) | |
t = theta_ast; % Accept the candidate | |
prob = min(alpha,1); % Accept with probability min(alpha,1) | |
a = 1; % Note the acceptance | |
else | |
t = theta; % Reject the candidate and use the same state | |
prob = 1-min(alpha,1); % The same state with probability 1-min(alpha,1) | |
a = 0; % Note the rejection | |
end | |
return; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment