| 
									
										
										
										
											2012-09-15 10:53:54 +08:00
										 |  |  | 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'); | 
					
						
							| 
									
										
										
										
											2021-03-11 04:58:12 +08:00
										 |  |  | imshow(dotImage) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | end |