Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Transposing necessary for table format
  • Loading branch information
benfulcher committed Dec 14, 2018
1 parent ead509f commit a0b7b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Calculation/TS_compute.m
Expand Up @@ -112,7 +112,7 @@ function TS_compute(doParallel,ts_id_range,op_id_range,computeWhat,customFile,be
opCompute = ones(1,height(Operations));
else
op_id_range = intersect(op_id_range,allIDs);
opCompute = ismember(allIDs,op_id_range);
opCompute = ismember(allIDs,op_id_range)';
end

% Definitions
Expand Down

0 comments on commit a0b7b51

Please sign in to comment.