rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
fv_plot.m
Go to the documentation of this file.
1 function p = fv_plot(grid,dofs,params)
2 %function p = fv_plot(grid,dofs,params)
3 % routine plotting a single fv function of
4 % fv_functions.
5 %
6 % Simple forward to plot_element_data(). For sequences, simple call of
7 % plot_sequence() can make use of this function
8 %
9 % Parameters:
10 % params: plot parameters see plot_element_data() for details.
11 % dofs: vector of degrees of freedom of finite volume diescrete function.
12 %
13 % Return values:
14 % p: graphic handle to plot
15 
16 % Bernard Haasdonk 3.9.2009
17 
18 p = plot_element_data(grid,dofs,params);
19 
function p = fv_plot(gridbase grid, dofs, params)
routine plotting a single fv function of fv_functions.
Definition: fv_plot.m:17
function p = plot_sequence(varargin)
plotting a sequence of data slices on polygonal 2d grid (constructed from params if empty) and provid...
Definition: plot_sequence.m:17