rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
plot.m
1 function p = plot(grid,params)
2 %function p = plot(grid [,params])
3 % plot of a rectgrid via plot_polygon_grid()
4 %
5 % see help plot_polygon_grid() for further information
6 % @copydoc ::gridbaseplot_polygon_grid()
7 %
8 
9 % Bernard Haasdonk 9.5.2007
10 
11 if (nargin <2)
12  params = [];
13 end;
14 
15 % simply forward the call
16 p = plot_polygon_grid(grid,params);
17