rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
dom_dec_set_rb_in_detailed_data.m
Go to the documentation of this file.
1 function detailed_data = ...
2  dom_dec_set_rb_in_detailed_data(detailed_data,RB_0,RB_G)
3 % function detailed_data =
4 % dom_dec_set_rb_in_detailed_data(detailed_data,RB_0,RB_G)
5 %
6 % index vectors `I_k^0` and `I_k^\Gamma` are generated here
7 
8 % I.Maier 19.07.2011
9 
10 detailed_data.RB = cell(1,2);
11 detailed_data.I_0 = cell(1,2);
12 detailed_data.I_G = cell(1,2);
13 for j = 1:2
14  detailed_data.RB{j} = [RB_0{j}, RB_G{j}];
15  detailed_data.I_0{j} = 1:size(RB_0{j},2);
16  detailed_data.I_G{j} = size(RB_0{j},2) + (1:size(RB_G{j},2));
17 end;