-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetup_Figures_Fit_CA.m
36 lines (30 loc) · 1.24 KB
/
Setup_Figures_Fit_CA.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
31
32
33
34
35
36
function [FigureHandles] = Setup_Figures_Fit_CA(Options)
% if strcmp(Options.Diagnostics,'y')
% FigureHandles.DiagnosticWindow = figure(3);
% set(FigureHandles.DiagnosticWindow,'Position',[848 364 450 341]);
% clf
% end
% FigureHandles.BackgroundTraceWindow = figure(4);
% set(FigureHandles.BackgroundTraceWindow,'Position',[452 -130 450 341]);
if strcmp(Options.DisplayFigures,'y')
Width = 400;
Height = 300;
FigureHandles.ExpPlot = figure(1);
set(FigureHandles.ExpPlot,'Position',[6 479 Width Height]);
clf
FigureHandles.ExpNormalizedPlot= figure(2);
set(FigureHandles.ExpNormalizedPlot,'Position',[407 405 Width Height]);
clf
FigureHandles.ModelPlot = figure(3);
set(FigureHandles.ModelPlot,'Position',[6 50 Width Height]);
clf
FigureHandles.ModelNormalizedPlot = figure(4);
set(FigureHandles.ModelNormalizedPlot,'Position',[407 55 Width Height]);
clf
FigureHandles.EfficiencyPlot = figure(5);
set(FigureHandles.EfficiencyPlot,'Position',[808 405 Width Height]);
clf
else
FigureHandles = [];
end
end