rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
plot_sim_data.m
Go to the documentation of this file.
1 function p = plot_sim_data(model,model_data,sim_data,plot_params)
2 %function p = plot_sim_data(model,model_data,sim_data,plot_params)
3 % function performing the plot of the simulation results as specified in model.
4 %
5 % parameters:
6 % plot_params : parameter structure controlling the output of the plot. Refer
7 % to the documentation of 'model.plot_sim_data' for more
8 % details. For time dependent problems 'plot_params' are often
9 % passed to plot_element_data() and plot_sequence().
10 %
11 % required fields of model:
12 % plot_sim_data : problem specific function actually performing the plot.
13 %
14 % return values:
15 % p : plot handle
16 
17 % Bernard Haasdonk 4.9.2009
18 
19 p = model.plot_sim_data(model,model_data,sim_data,plot_params);
20