diff m-toolbox/test/graph_test.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/test/graph_test.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,25 @@
+% Exploring how to plot graphs.
+% 
+clear;
+
+h1 = history('n1', '0.1');
+h2 = history('n2', '0.1');
+h3 = history('n3', '0.1', [], h1);
+h4 = history('n4', '0.1', [], h2);
+h5 = history('n5', '0.1', [], [h3 h4]);
+
+h6 = history('n6', '0.1')
+h7 = history('n7', '0.1')
+h8 = history('n8', '0.1', [], [h6 h7])
+
+h9 = history('n9', '0.1', plist([param('a', 1) param('b', 2)]), [h5 h8])
+
+
+% make nodes from history
+[h,ax] = plot(h9)
+title('test')
+
+
+%%
+% treeplot([0 1 1 2 3])
+