Plot Bayes net within matlab ! (dot -> png -> imread -> imshow).
							parent
							
								
									60da4cb2f9
								
							
						
					
					
						commit
						a9cae46b10
					
				| 
						 | 
				
			
			@ -0,0 +1,8 @@
 | 
			
		|||
function plotBayesNet(bayesNet)
 | 
			
		||||
% plotBayesNet saves as dot file, renders, and shows as image
 | 
			
		||||
% Needs dot installed
 | 
			
		||||
 | 
			
		||||
bayesNet.saveGraph('/tmp/bayesNet.dot')
 | 
			
		||||
!dot -Tpng -o /tmp/dotImage.png /tmp/bayesNet.dot
 | 
			
		||||
dotImage=imread('/tmp/dotImage.png');
 | 
			
		||||
imshow(dotImage)
 | 
			
		||||
		Loading…
	
		Reference in New Issue