-
Notifications
You must be signed in to change notification settings - Fork 7
/
swe_config_results.m
30 lines (28 loc) · 1.18 KB
/
swe_config_results.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function results = swe_config_results
% This displays the results from an SwE model.
% =========================================================================
% FORMAT results = swe_config_results
% =========================================================================
% Written by Tom Maullin (05/09/2018)
% Version Info: $Format:%ci$ $Format:%h$
% -------------------------------------------------------------------------
% Results Directory
% -------------------------------------------------------------------------
dis = cfg_files;
dis.tag = 'dis';
dis.name = 'SwE File';
dis.help = {' '
'Select an ''SwE.mat'' file containing the computed model to be displayed.'};
dis.filter = 'mat';
dis.ufilter = '.*';
dis.num = [1 1];
% -------------------------------------------------------------------------
% compute design
% -------------------------------------------------------------------------
results = cfg_exbranch;
results.tag = 'results';
results.name = 'Results Display';
results.val = {dis};
results.help = {' '
'Module of the SwE toolbox allowing the display of a previously computed model.'};
results.prog = @swe_run_results;