Skip to content

Commit

Permalink
Removed leak of dev branch percentiles onto master
Browse files Browse the repository at this point in the history
  • Loading branch information
JonKing93 committed Feb 14, 2020
1 parent e216195 commit fdbbbfb
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions 4. DA Analyses/@kalmanFilter/run.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
%
% Adev - Updated ensemble deviations (nState x nEns x nTime)
%
% Aperc - Percentiles of the updated ensemble (nState x nPercentile x nTime)
% (See output.settings for the percentiles calculated)
%
% Ye - Proxy estimates
% Joint Updates: (nObs x nEns)
% Serial Updates: (nObs x nEns x nTime)
Expand Down Expand Up @@ -72,7 +69,7 @@
F = obj.adjustH( F, reconstruct );

% Do the updates
output = obj.serialENSRF( M, obj.D, obj.R, F, w, obj.fullDevs, obj.percentiles );
output = obj.serialENSRF( M, obj.D, obj.R, F, w, obj.fullDevs );

% Unappend if necessary
output.Append = false;
Expand All @@ -95,7 +92,7 @@
end

% Do the updates
output = obj.jointENSRF( M, obj.D, obj.R, obj.F, w, yloc, obj.meanOnly, obj.fullDevs, obj.percentiles, reconstruct );
output = obj.jointENSRF( M, obj.D, obj.R, obj.F, w, yloc, obj.meanOnly, obj.fullDevs, reconstruct );
end

end

0 comments on commit fdbbbfb

Please sign in to comment.