Skip to content

Commit

Permalink
Fix some whitespace (tab vs space) misalignment
Browse files Browse the repository at this point in the history
  • Loading branch information
mharms committed Mar 12, 2020
1 parent f1b2c5f commit 9f08366
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ICAFIX/scripts/icaDim.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
data = Origdata(mask,:);
else
data = Origdata; % "copying" the input as-is doesn't use any memory
clear mask;
clear mask;
end
clear Origdata;

Expand Down Expand Up @@ -71,7 +71,7 @@
% constant (albeit, possibly demeaned and/or detrended previously, per above)

c
clear data_vn;
clear data_vn;
%Variance normalization via PCA reconstruction: Isolate unstructured noise
if VN~=0
noise_unst = (u(:,Out.VNDIM(c):Out.DOF)*EigS(Out.VNDIM(c):Out.DOF,Out.VNDIM(c):Out.DOF)*v(:,Out.VNDIM(c):Out.DOF)')';
Expand Down Expand Up @@ -275,7 +275,7 @@
% and make sure its value is at least 0.001
if useMask
temp = zeros(NvoxOrig,1,'single');
temp(mask,:) = Out.noise_unst_std;
temp(mask,:) = Out.noise_unst_std;
else
temp = Out.noise_unst_std;
end
Expand Down

0 comments on commit 9f08366

Please sign in to comment.