rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
display.m
1 function display(grid)
2 %function display(grid)
3 % display method for .triagrid
4 %
5 % This inherits gridbase.display() and adds information on
6 % - the number of interior edges and
7 % - the number of boundary edges.
8 
9 % Bernard Haasdonk 9.5.2007
10 
11 % simple forward to gridbase/display
12 display@gridbase(grid);
13 disp(['number of interior edges : ', num2str(grid.nedges_interior)]);
14 disp(['number of boundary edges : ', num2str(grid.nedges_boundary)]);
15