rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules 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 
A cartesian rectangular grid in two dimensions with axis parallel elements.
Definition: rectgrid.m:17
Base class for all grid classes.
Definition: gridbase.m:17