-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsinead_featureanalysis.m
More file actions
65 lines (65 loc) · 2.04 KB
/
sinead_featureanalysis.m
File metadata and controls
65 lines (65 loc) · 2.04 KB
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
function fig = sinead_featureanalysis()
% ___________________________________________________________________________
% SINEAD (Software Integrating NEuroimaging And other Data)
%
% Copyright 2016 ISRC-Ulster
% Reference
% Youssofzadeh et al, Multi-kernel learning with Dartel enhances
% combined MRI-PET classification and prediction
% of Alzheimer’s disease: group and individual
% data analyses, submitted to Human Brain Mapping
%
%
% v1.0 Vahab Youssofzadeh 05/06/2016
% ___________________________________________________________________________
disp('sinead_featureanalysis ...')
col = [0.9020 0.9072 0.9014];
F = 10;
h0 = figure('Color',[1 1 1], ...
'PaperPosition',[18 180 576 432], ...
'PaperUnits','points', ...
'Position',[50 560 390 210], ...
'Tag','Main', ...
'NumberTitle','off',...
'Name','ToolBox : SINEAD v.1', ...
'MenuBar','none', ...
'ToolBar','none');
h1 = uicontrol('Parent',h0, ...
'Fontsize', F, ...
'Units','points', ...
'BackgroundColor',col, ...
'Position',[72 85 166 16], ...
'String','Feature extraction', ...
'CallBack','sinead_featureanalysis_fe;');
h2 = uicontrol('Parent',h0, ...
'Fontsize', F, ...
'Units','points', ...
'BackgroundColor',col, ...
'Position',[72 60 166 16], ...
'String','Feature selection (statistical analysis)', ...
'CallBack','sinead_featureanalysis_ANOVA;');
% h3 = uicontrol('Parent',h0, ...
% 'Units','points', ...
% 'BackgroundColor',col, ...
% 'Position',[72 35 166 16], ...
% 'String','ANOVA test', ...
% 'CallBack','sinead_featureanalysis_ANOVA');
h4 = uicontrol('Parent',h0, ...
'Fontsize', F, ...
'Units','points', ...
'BackgroundColor',col, ...
'Position',[72 10 166 16], ...
'String','Close', ...
'CallBack','delete(gcf)');
% 'CallBack','delete(gcf), spm(''Clear'')');
h5 = uicontrol('Parent',h0, ...
'Fontsize', F, ...
'Units','points', ...
'BackgroundColor',[1 1 1], ...
'FontSize',11, ...
'ListboxTop',0, ...
'Position',[16 110 280 36], ...
'String','Feature analysis (stat toolbox)', ...
'Style','text', ...
'Tag','StaticText5');
if nargout > 0, fig = h0; end