[Dart-dev] DART/branches Revision: 11684
dart at ucar.edu
dart at ucar.edu
Tue May 30 10:22:28 MDT 2017
nancy at ucar.edu
2017-05-30 10:22:28 -0600 (Tue, 30 May 2017)
47
making my branch consistent with the rma_trunk
Index: DART/branches/rma_updates_nancy
===================================================================
--- DART/branches/rma_updates_nancy 2017-05-30 16:06:21 UTC (rev 11683)
+++ DART/branches/rma_updates_nancy 2017-05-30 16:22:28 UTC (rev 11684)
Property changes on: DART/branches/rma_updates_nancy
___________________________________________________________________
Modified: svn:mergeinfo
## -30,7 +30,7 ##
/DART/branches/rma_sprint:8101-8172
/DART/branches/rma_state_structure_test_dir:9478-9682
/DART/branches/rma_state_structure_unit_test:9697-10274
-/DART/branches/rma_trunk:11621-11669
+/DART/branches/rma_trunk:11621-11682
/DART/branches/rma_trunk_clamping:8792-8807
/DART/branches/rma_trunk_filename:8017-8163
/DART/branches/rma_trunk_get_state_fun:8574-8602
Modified: DART/branches/rma_updates_nancy/diagnostics/matlab/startup.m
===================================================================
--- DART/branches/rma_updates_nancy/diagnostics/matlab/startup.m 2017-05-30 16:06:21 UTC (rev 11683)
+++ DART/branches/rma_updates_nancy/diagnostics/matlab/startup.m 2017-05-30 16:22:28 UTC (rev 11684)
@@ -60,8 +60,8 @@
%% summarize
-truth_file = fullfile(mydir,'true_state.nc');
-diagn_file = fullfile(mydir,'preassim.nc');
+truth_file = 'true_state.nc';
+diagn_file = 'preassim.nc';
disp(' ')
fprintf('the default data directory is %s\n',mydir)
Modified: DART/branches/rma_updates_nancy/documentation/DART_LAB/matlab/oned_model.m
===================================================================
--- DART/branches/rma_updates_nancy/documentation/DART_LAB/matlab/oned_model.m 2017-05-30 16:06:21 UTC (rev 11683)
+++ DART/branches/rma_updates_nancy/documentation/DART_LAB/matlab/oned_model.m 2017-05-30 16:22:28 UTC (rev 11684)
@@ -44,6 +44,11 @@
%
% DART $Id$
+%>@todo FIXME really should set plot limits based on model bias and inflation values
+%> could set state limits to +/- 7
+%> observation likelihood graphic (handles.axes) can have a static range
+%> based on these values as well.
+
help oned_model
atts = stylesheet; % get the default fonts and colors
@@ -60,10 +65,10 @@
figHeight = 600; % The height of the entire figure, in pixels
handles.figure = figure('Position', [figXmin figYmin figWidth figHeight], ...
- 'Units', 'Pixels', ...
- 'Name', 'oned_model');
+ 'Units' , 'Pixels', ...
+ 'Name' , 'oned_model');
-set(handles.figure,'Color', atts.background);
+set(handles.figure, 'Color', atts.background);
%% -----------------------------------------------------------------------------
@@ -78,26 +83,26 @@
scaled_fontsize = 0.5; % set fontsize
handles.ui_button_advance_model = uicontrol('Style', 'pushbutton', ...
- 'Units', 'Normalized', ...
- 'Position', [0.125 0.905 0.182 0.064], ...
- 'String', 'Advance Model', ...
- 'BackgroundColor', 'White', ...
- 'FontName', atts.fontname, ...
- 'FontUnits', 'Normalized', ...
- 'FontSize', scaled_fontsize, ...
- 'FontWeight', 'normal', ...
- 'Callback', @step_ahead);
+ 'Units' , 'Normalized', ...
+ 'Position' , [0.125 0.905 0.182 0.064], ...
+ 'String' , 'Advance Model', ...
+ 'BackgroundColor' , 'White', ...
+ 'FontName' , atts.fontname, ...
+ 'FontUnits' , 'Normalized', ...
+ 'FontSize' , scaled_fontsize, ...
+ 'FontWeight' , 'normal', ...
+ 'Callback' , @step_ahead);
handles.ui_button_start_auto_run = uicontrol('Style', 'pushbutton', ...
- 'Units', 'Normalized', ...
- 'Position', [0.125 0.819 0.182 0.064], ...
- 'String', 'Start Auto Run' , ...
- 'BackgroundColor', 'White', ...
- 'FontName', atts.fontname, ...
- 'FontUnits', 'Normalized', ...
- 'FontSize', scaled_fontsize, ...
- 'FontWeight', 'normal', ...
- 'Callback', @auto_run_Callback);
+ 'Units' , 'Normalized', ...
+ 'Position' , [0.125 0.819 0.182 0.064], ...
+ 'String' , 'Start Auto Run' , ...
+ 'BackgroundColor' , 'White', ...
+ 'FontName' , atts.fontname, ...
More information about the Dart-dev
mailing list