|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| USE_ONLY_PART_PART_OF_DATA = 0;
|
| InjectionSet = 2;
|
|
|
| if InjectionSet == 1
|
| UseTheseInj = 1:16; Injname = 'adjacent';
|
| elseif InjectionSet == 2
|
| UseTheseInj = 17:32; Injname = 'skip1';
|
| elseif InjectionSet == 3
|
| UseTheseInj = 33:48; Injname = 'skip2';
|
| elseif InjectionSet == 4
|
| UseTheseInj = 49:64; Injname = 'skip3';
|
| elseif InjectionSet == 5
|
| UseTheseInj = 65:79; Injname = 'all_against1';
|
| elseif InjectionSet == 6
|
| UseTheseInj = [17:32 49:64];
|
| end
|
|
|
|
|
| savedatapath = 'data_mat_files';
|
| datasetno = 2; objectno = 5;
|
| datamat_file = [savedatapath,'/datamat_',num2str(datasetno),'_',num2str(objectno)]
|
|
|
|
|
| load(datamat_file)
|
| Ninj = size(CurrentPattern,2);
|
| Nmeas = size(MeasPattern,2);
|
| if USE_ONLY_PART_PART_OF_DATA
|
| CurrentPattern = CurrentPattern(:,UseTheseInj);
|
| Uel = Uel(:,UseTheseInj);
|
| Ninj = length(UseTheseInj);
|
| end
|
|
|
|
|
|
|