annotate toolboxes/graph_visualisation/share/graphviz/graphs/undirected/ER.gv @ 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 graph ER {
Daniel@0 2 node [shape=box]; course; institute; student;
Daniel@0 3 node [shape=ellipse]; {node [label="name"] name0; name1; name2;}
Daniel@0 4 code; grade; number;
Daniel@0 5 node [shape=diamond,style=filled,color=lightgrey]; "C-I"; "S-C"; "S-I";
Daniel@0 6
Daniel@0 7 name0 -- course;
Daniel@0 8 code -- course;
Daniel@0 9 course -- "C-I" [label="n",len=1.00];
Daniel@0 10 "C-I" -- institute [label="1",len=1.00];
Daniel@0 11 institute -- name1;
Daniel@0 12 institute -- "S-I" [label="1",len=1.00];
Daniel@0 13 "S-I" -- student [label="n",len=1.00];
Daniel@0 14 student -- grade;
Daniel@0 15 student -- name2;
Daniel@0 16 student -- number;
Daniel@0 17 student -- "S-C" [label="m",len=1.00];
Daniel@0 18 "S-C" -- course [label="n",len=1.00];
Daniel@0 19
Daniel@0 20 label = "\n\nEntity Relation Diagram\ndrawn by NEATO";
Daniel@0 21 fontsize=20;
Daniel@0 22 }