rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups 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