-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.m
53 lines (46 loc) · 926 Bytes
/
make.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
%MIT License
%Copyright (c) 2019 Sherman Lo
clc;
clearvars;
close all;
disp('Chapter 3 - Data Collection');
plotScans;
oddEvenPlot;
shadingCorrectionExample;
this = ShadingCorrectionAnovaAbsNoFilter();
this.run();
this.printResults();
this = ShadingCorrectionAnovaAbsFilter();
this.run();
this.printResults();
disp('Chapter 4 - Compound Poisson');
cpHistogram;
this = CpEmAlgorithm();
this.run();
this.printResults();
cpLogLikelihoodPlot;
disp('Chapter 5 - Variance Prediction');
glmSelect; %parfor possible
varMeanExample;
varMeanCv; %parfor possible
devianceGraph;
varMeanResidual;
disp('Chapter 6 - Inference');
inferenceIntro;
inferenceSubsample;
this = BandwidthSelection();
this.run();
this.printResults();
this = BandwidthSelection2();
this.run();
this.printResults();
nullIid;
allNullScript;
allNull;
defectSimulation;
defectDetect;
inferenceSubRoi;
disp('Front cover');
frontCover;
%gpu code
defectDetectGpu;