rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
lin_evol_opt_get_rb_from_detailed_data_separate_bases.m
Go to the documentation of this file.
1 function RB= lin_evol_opt_get_rb_from_detailed_data_separate_bases(detailed_data,derivative_index);
2 %function RB=
4 %
5 % Returning the RB from detailed_data.
6 % If derivative_index is set to 0 the solution RB is returned.
7 %
8 
9 % Markus Dihlmann 31.03.2011
10 
11 if isempty(derivative_index)||(derivative_index==0)
12  RB = detailed_data.RB;
13 else
14  RB = detailed_data.RB_der{derivative_index};
15 end