annotate toolboxes/FullBNT-1.0.7/bnt/inference/static/@enumerative_inf_engine/enter_evidence.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 function [engine, loglik] = enter_evidence(engine, evidence)
Daniel@0 2 % ENTER_EVIDENCE Add the specified evidence to the network (enumerative_inf)
Daniel@0 3 % [engine, loglik] = enter_evidence(engine, evidence)
Daniel@0 4 %
Daniel@0 5 % evidence{i} = [] if if X(i) is hidden, and otherwise contains its observed value (scalar or column vector)
Daniel@0 6
Daniel@0 7 engine.evidence = evidence;
Daniel@0 8 if nargout == 2
Daniel@0 9 [m, loglik] = marginal_nodes(engine, []);
Daniel@0 10 end