comparison scripts/sparse/treeplot.m @ 11589:b0084095098e

missing semicolons in script files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 18:26:09 -0500
parents c792872f8942
children bac54daffde2
comparison
equal deleted inserted replaced
11588:d5bd2766c640 11589:b0084095098e
188 istop = idx(i) - 1; 188 istop = idx(i) - 1;
189 if (istop - istart < 1) 189 if (istop - istart < 1)
190 continue; 190 continue;
191 endif 191 endif
192 plot (x_coordinate(skelet(istart:istop)), 192 plot (x_coordinate(skelet(istart:istop)),
193 y_coordinate(skelet(istart:istop)), edge_style) 193 y_coordinate(skelet(istart:istop)), edge_style);
194 endfor 194 endfor
195 195
196 ## Set axis and graph size. 196 ## Set axis and graph size.
197 axis ([0.5, left_most+0.5, max_ht-0.5, num_nodes-0.5], "nolabel"); 197 axis ([0.5, left_most+0.5, max_ht-0.5, num_nodes-0.5], "nolabel");
198 198