From fdbbbfb53e5264ee70946a3c4aaf3d17ae55d758 Mon Sep 17 00:00:00 2001 From: JonKing93 Date: Fri, 14 Feb 2020 09:12:56 -0700 Subject: [PATCH] Removed leak of dev branch percentiles onto master --- 4. DA Analyses/@kalmanFilter/run.m | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/4. DA Analyses/@kalmanFilter/run.m b/4. DA Analyses/@kalmanFilter/run.m index fcd81b19..335e9b3f 100644 --- a/4. DA Analyses/@kalmanFilter/run.m +++ b/4. DA Analyses/@kalmanFilter/run.m @@ -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) @@ -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; @@ -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 \ No newline at end of file