rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
rb_plot_detailed_data.m
1 function rb_plot_detailed_data(model,detailed_data)
2 %function rb_plot_detailed_data(model,detailed_data)
3 %
4 % function simply calling a problem specific implementation defined
5 % by the model.rb_problem_type, i.e.
6 % rb_plot_lin_evol_detailed_data, etc.
7 
8 % Bernard Haasdonk 23.5.2007
9 
10 plot_algorithm = ['rb_',params.rb_problem_type,...
11  '_plot_detailed_data'];
12 
13 feval(plot_algorithm,detailed_data,params);
14