Skip to content

Commit

Permalink
Revert earlier change
Browse files Browse the repository at this point in the history
  • Loading branch information
villekf committed Nov 9, 2020
1 parent 9658691 commit 6012dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/loadScatterData.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
options.ScatterC = fread(fid, inf, 'single=>single',0,'l');
fclose(fid);
s_length = length(options.ScatterC)/(options.Nang*options.Ndist*options.TotSinos);
options.ScatterC = 1 - reshape(options.ScatterC,options.Ndist,options.Nang,options.TotSinos,s_length);
options.ScatterC = reshape(options.ScatterC,options.Ndist,options.Nang,options.TotSinos,s_length);
if s_length > 1
if options.partitions > 1
temp = cell(s_length, 1);
Expand Down

0 comments on commit 6012dea

Please sign in to comment.