rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
dune_set_mu.m
Go to the documentation of this file.
1 function model = dune_set_mu(model, mu, skip_send_to_dune)
2 %function dune_set_mu(model, mu)
3 % sets the parameter mu in dune-rb
4 
5 model.mu = mu;
6 
7 if nargout == 0
8  warning('dune_set_mu called without return argument!');
9 end
10 
11 if nargin==2 || ~skip_send_to_dune
12  model.mexptr('set_mu', mu);
13 end
14 
15 
16 end%| \docupdate
function model = dune_set_mu(model, mu, skip_send_to_dune)
sets the parameter mu in dune-rb
Definition: dune_set_mu.m:17