rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
nonlin_evol_plot_sim_data.m
1 function p = nonlin_evol_plot_sim_data(model, model_data, sim_data, plot_params)
2 %function nonlin_evol_plot_sim_data(model, model_data, sim_data, plot_params)
3 %
4 % function plotting simulation results
5 
6 % Martin Drohmann 15.12.2009
7 
8  if isfield(plot_params, 'bind_to_model') ...
9  && plot_params.bind_to_model
10  plot_params = copy_model_descr_to_plot_params(model, ...
11  plot_params);
12  end
13  % plot_params.plot = model.plot;
14  if ~isfield(plot_params,'plot')
15  plot_params.plot = model.plot;
16  end;
17  p = plot_sequence(sim_data.U, model_data.grid, plot_params);
18 
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