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