Skip to content

Commit

Permalink
Added version record and time of calculation to output record
Browse files Browse the repository at this point in the history
  • Loading branch information
JonKing93 committed Feb 18, 2020
1 parent cbec8c7 commit f2058a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 4. DA Analyses/@kalmanFilter/jointENSRF.m
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
end

% Create the output structure
output.settings = struct('Updates', 'Joint', 'Mean_Only', meanOnly);
output.settings = struct('Updates', 'Joint', 'Mean_Only', meanOnly, 'version', dash.version, 'Time_Completed', datetime(clock));
if ~all(w==1, 'all') || ~all(yloc==1, 'all')
output.settings.Localize = {w, yloc};
end
Expand Down
2 changes: 1 addition & 1 deletion 4. DA Analyses/@kalmanFilter/serialENSRF.m
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
end

% Create the output structure
output.settings = struct('Analysis', 'EnSRF', 'Type', 'Serial');
output.settings = struct('Analysis', 'EnSRF', 'Type', 'Serial','version', dash.version, 'Time_Completed', datetime(clock));
if ~all( w==1, 'all' )
output.settings.Localize = w;
end
Expand Down

0 comments on commit f2058a5

Please sign in to comment.