rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
dom_dec_plot_sim_data.m
Go to the documentation of this file.
1 function p = dom_dec_plot_sim_data(model,model_data,sim_data, ...
2  plot_params)
3 % function p =
4 % dom_dec_plot_sim_data(model,model_data,sim_data,plot_params)
5 %
6 % plots the last iteratives in sim_data.uh with colored patches
7 
8 % I. Maier, 19.07.2011
9 
10 figure,
11 for i = 1:2
12  plot(sim_data.uh{i},plot_params);
13 end;
14 p = gcf;