2012-09-15 11:05:22 +08:00
|
|
|
function plotBayesTree(bayesTree)
|
|
|
|
% plotBayesTree saves as dot file, renders, and shows as image
|
|
|
|
% Needs dot installed
|
|
|
|
|
|
|
|
bayesTree.saveGraph('/tmp/bayesTree.dot')
|
|
|
|
!dot -Tpng -o /tmp/dotImage.png /tmp/bayesTree.dot
|
|
|
|
dotImage=imread('/tmp/dotImage.png');
|
2021-03-11 04:58:12 +08:00
|
|
|
imshow(dotImage)
|
|
|
|
|
|
|
|
end
|