-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMAIN.m
65 lines (60 loc) · 1.18 KB
/
MAIN.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
54
55
56
57
58
59
60
61
62
63
64
65
%% MetaLab: Meta analysis software for basic research applications (2019)
% N. Mikolajewicz and S.V. Komarova
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
% PRESS RUN
%
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%
%
%
%
%
%
%
%
%
%
%
%
%
%
%
%
%
%%
close all; clear all;
modules = {'Data Extraction';...
'Fit Model';...
'Prepare Input';...
'Heterogeneity';...
'Meta-analysis';...
'Meta-regression';...
'close MetaLab'};
figure('Name', 'MetaLab','NumberTitle','off');
try; A = imread('METALabArchitecture.png'); imshow(A); axis off; catch; end
choice = menu ('Select MetaLab Module', modules);
module = modules{choice};
switch module
case 'Data Extraction'
dataExtraction_UI();
case 'Fit Model'
fitModel_UI();
case 'Prepare Input'
prepData_UI();
case 'Heterogeneity'
h = dataDistribution_UI();
case 'Meta-analysis'
metaAnalysis_UI();
case 'Meta-regression'
metaRegression_UI();
case 'close MetaLab'
close all;
error('MetaLab Closed');
end