-
Notifications
You must be signed in to change notification settings - Fork 8
/
spm_DesRep.m
1477 lines (1294 loc) · 52.2 KB
/
spm_DesRep.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
function varargout = spm_DesRep(varargin)
% Design reporting utilities
% FORMAT varargout = spm_DesRep(action,varargin)
% - An embedded callback, multi-function function
% - For detailed programmers comments, see format specifications
% in main body of code
%_______________________________________________________________________
%
% spm_DesRep (design reporting) is a multi-function function providing
% a suite of utility functions for various graphical reports on a given
% experimental design, embodied in the design matrix structure and
% other associated data structures.
%
% ----------------
%
% By default, spm_DesRep prompts for selection of a SPM.mat file
%
% Given details of a design spm_DesRep sets up a "Design" menu in the
% SPM 'Interactive' window. The menu options launch various graphical
% summaries of the current SPM design in the SPM 'Graphics' window, and
% has an option to go ahead and estimate the design.
%
% * Design Matrix - Displays graphical summary of the design matrix
%
% The design is labelled with the corresponding parameter and
% file names, and is displayed as an image scaled (using
% spm_DesMtx('sca',...) such that zero is mid-grey, -1 is black, and +1
% is white. Covariates exceeding this randge are scaled to fit.
%
% The design matrix is "surfable": Clicking (and holding or dragging)
% around the design matrix image reports the corresponding value of the
% design matrix ('normal' click - "left" mouse button usually), the
% image filename ('extend' mouse click - "middle" mouse), or parameter
% name ('alt' click - "right" mouse). Double clicking the design matrix
% image extracts the design matrix into the base MatLab workspace.
%
% Under the design matrix the parameter estimability is displayed as a
% 1xp matrix of grey and white squares. Parameters that are not
% uniquely specified by the model are shown with a grey patch. Surfing
% the estimability image reports the parameter names and their
% estimability. Double clicking extracts the estimability vector into
% the base MatLab workspace.
%
% * Design orthogonality - Displays orthogonality matrix for this design
%
% The design matrix is displayed as in "Design Matrix" view above,
% labelled with the parameter names.
%
% Under the design matrix the design orthogonality matrix is
% displayed. For each pair of columns of the design matrix, the
% orthogonality matrix depicts the magnitude of the cosine of the
% angle between them, with the range 0 to 1 mapped to white to
% black. Orthogonal vectors (shown in white), have cosine of zero.
% Colinear vectors (shown in black), have cosine of 1 or -1.
%
% The cosine of the angle between two vectors a & b is obtained by
% dividing the dot product of the two vectors by the product of
% their lengths:
%
% a'*b
% ------------------------
% sqrt(sum(a.^2)*sum(b.^2)
%
% If (and only if) both vectors have zero mean, i.e.
% sum(a)==sum(b)==0, then the cosine of the angle between the
% vectors is the same as the correlation between the two variates.
%
% The design orthogonality matrix is "surfable": Clicking (and
% holding or dragging) the cursor around the design orthogonality
% image reports the orthogonality of the correponding pair of
% columns. Double clicking on the orthogonality matrix extracts
% the contrast orthogonality matrix into the base MatLab
% workspace.
%
%
% * Explore design - Sub-menu's for detailed design exploration.
%
% If this is an fMRI design, then the session & trial/condition
% structure of the design is reflected in the sub-menu structure.
% Selecting a given session, and then trial/condition within the
% session, launches a comprehensive display of the parameters of
% that design. See spm_fMRI_design_show.m for further details of
% these displays.
%
% If not an fMRI design, then the Explore sub-menu has two options:
% "Files and factors" & "Covariates".
%
% * Explore: Files and factors - Multi-page listing of filenames,
% factor indicies and covariates.
%
% The covariates printed are the raw covariates as entered into
% SPM, with the exception of the global value, which is printed
% after any grand mean scaling.
%
% * Explore: Covariates - Plots of the covariates, showing how they are
% included into the model.
%
% Covariates are plotted, one per page, overlaid on the design
% matrix. The description strings in the xC covariate structure
% array are displayed. The corresponding design matrix column(s)
% is(are) highlighted.
%
% * Estimate - if the design hasn't been estimated (and all necessary
% parameters are available), then this option starts
% parameter estimation using spm_spm.m.
%
% * Clear - clears Graphics window, re-instating Results section MIP
% & design matrix graphics (if in the results section).
% * Help - displays this text!
%
% ----------------
%
% spm_DesRep also handles "surfing" of contrast depictions, which are
% bar-graphs for T-contrasts and images for F-contrasts. Clicking
% ('normal' click - "left" mouse button usually) with the on the bars
% of the bar-graphs, or anywhere in an image, and dragging, dynamically
% reports the contrast weight depicted under the cursor. The format of
% the report string is:
% #{T/F}: <name> (ij) = <weight>
% ...where # is the contrast number, T/F indicates the type of
% contrast, <name> the name given to the contrast, ij the index into
% the contrast vector/matrix weight under the cursor, and <weight> the
% corresponding contrast weight.
%
% Double clicking on a contrast depiction extracts the contrast weights
% into the base workspace.
%_______________________________________________________________________
% Copyright (C) 2008 Wellcome Trust Centre for Neuroimaging
% Andrew Holmes
% $Id: spm_DesRep.m 4209 2011-02-22 20:11:05Z guillaume $
%=======================================================================
% - FORMAT specifications for embedded functions
%=======================================================================
%( This is a multi function function, the first argument is an action )
%( string, specifying the particular action function to take. )
%
% FORMAT h = spm_DesRep('DesRepUI',SPM)
% Setup "design" menu for design reporting.
% SPM - structure containing design details. Required fields are:
%
% .xX - design matrix structure
% (See spm_{fmri_}spm_ui.m & spm_spm.m for formats)
% .xY.VY - array of mmap file handles (from spm_{fmri_}spm_ui.m)
% .xM - Masking structure
% .xC - Covariate definition structure (not fMRI)
% (see spm_spm_ui.m for format)
% .Sess - fMRI session structure (not needed if not fMRI)
% (see spm_fmri_spm_ui.m for format)
% .xsDes - Design description structure
% (see spm_{fmri_}spm_ui.m for details)
% .swd - SPM working directory - directory where configuration file resides
% [defaults to empty]
% .SPMid - (recommended) ID string of creator program.
% h - handle of menu created ('Tag'ged as 'DesRepUI')
%
%
% FORMAT spm_DesRep('Files&Factors',P,I,xC,sF,xs)
% Produces multi-page listing of files, factor indices, and covariates.
% P - nxv CellStr of filenames (i.e. reshape({V.fname},size(V)))
% I - nx4 matrix of factor indices
% xC - Covariate structure array (see spm_spm_ui.m for definitions)
% ('rc' & 'cname' fields used)
% sF - 1x4 CellStr of factor names (i.e. D.sF of spm_spm_ui)
% xs - [optional] structure of extra strings containing descriptive
% information which is printed out after the files & variables listing.
% The field names are used as sub-headings, the field values (which
% must be strings or CellStr) printed alongside.
%
% FORMAT spm_DesRep('DesMtx',xX,fnames,xs)
% Produces a one-page graphical summary of the design matrix
% FORMAT spm_DesRep('DesOrth',xX)
% Produces a one-page graphical summary of the design orthogonality
% xX - Structure containing design matrix information
% - the first of {xX.nX, xX.xKXs.X, xX.X} is used for display
% .nX - Desgin matrix already scaled for display
% .xKXs.X - temporally filtered design matrix (within space structure)
% .X - "raw" design matrix (as setup by spm{,_fmri}_ui routines)
%
% .name - [optional] px1 CellStr of parameter names
%
% fnames - [optional] nxv CellStr of filenames (i.e. reshape({V.fname},size(V)))
% xs - [optional] structure of extra strings containing descriptive
% information which is printed at the foot of the page ('DesMtx' usage)
% The field names are used as sub-headings, the field values
% (which must be strings or CellStr) printed alongside.
%
% FORMAT spm_DesRep('Covs',xC,X,Xnames)
% Plots the covariates and describes how they are included into the model.
% xC - Covariate structure array (see spm_spm_ui.m for details)
% ('rcname','rc','descrip','cname' & 'cols' fields used)
% X - nxp Design matrix
% Xnames - px1 CellStr of parameter names
%
% ======================================================================
% Utility functions and CallBack handlers:
%
% FORMAT s = spm_DesRep('ScanTick',nScan,lim)
% Pares down 1:nScan to at most lim items, showing every 2nd/3rd/... as
% necessary to pair down to <lim items. Always ends with nScan so
% #images is indicated.
% nScan - number of scans
% lim - limit to number of elements of s
% s - 1:nScan pared down accordingly
%
% FORMAT spm_DesRep('SurfDesMtx_CB')
% 'ButtonDownFcn' CallBack for surfing clickable design matrix images
% FORMAT spm_DesRep('SurfDesMtxMo_CB')
% 'WindowButtonMotionFcn' CallBack for surfing clickable design matrix images
% FORMAT spm_DesRep('SurfDesMtxUp_CB')
% 'ButtonUpFcn' CallBack for ending surfing of design matrix images
%
% The design matrix, parameter names and image file names should be
% saved in the UserData of the image object as a structure with fields
% 'X','Xnames' & 'fnames' respectively. The code is robust to any of
% these being empty or mis-specified - surfing simply reports "no
% cached data".
%
% FORMAT spm_DesRep('SurfEstIm_CB')
% 'ButtonDownFcn' CallBack for surfing clickable parameter estimability images
% FORMAT spm_DesRep('SurfEstImMo_CB')
% 'WindowButtonMotionFcn' CallBack for surfing parameter estimability images
% FORMAT spm_DesRep('SurfEstImUp_CB')
% 'ButtonUpFcn' CallBack for ending surfing of parameter estimability images
%
% The binary parameter estimability matrix and parameter names should
% be saved in the UserData of the image object as a structure with
% fields 'est' & 'Xnames' respectively. The code is robust to any of
% these being empty or mis-specified - surfing simply reports "no
% cached data".
%
% FORMAT spm_DesRep('SurfDesO_CB')
% 'ButtonDownFcn' CallBack for surfing clickable design orthogonality images
% FORMAT spm_DesRep('SurfDesOMo_CB')
% 'WindowButtonMotionFcn' CallBack for surfing design orthogonality images
% FORMAT spm_DesRep('SurfDesOUp_CB')
% 'ButtonUpFcn' CallBack for ending surfing of design orthogonality images
%
% The design orthogonality matrix (cosine of angle between vectors),
% correlation index matrix (1 when both columns have zero mean, when
% cos(\theta) equals the correlation), and parameter names should be
% saved in the UserData of the image object as a structure with fields
% 'O', 'bC' & 'Xnames' respectively.
%
% FORMAT spm_DesRep('SurfCon_CB')
% 'ButtonDownFcn' CallBack for surfing clickable contrast depictions
% FORMAT spm_DesRep('SurfConOMo_CB')
% 'WindowButtonMotionFcn' CallBack for surfing contrast depictions
% FORMAT spm_DesRep('SurfConOUp_CB')
% 'ButtonUpFcn' CallBack for ending surfing of contrast depictions
%
% The contrast number, handle of text object to use for reporting and
% contrast structure (for this contrast) should be saved in the
% UserData of the image object as a structure with fields 'i', 'h' &
% 'xCon' respectively.
%
%_______________________________________________________________________
%-Format arguments
%-----------------------------------------------------------------------
if nargin==0
hC = spm_DesRep('DesRepUI');
SPM = get(hC,'UserData');
spm_DesRep('DesMtx',SPM.xX,...
reshape({SPM.xY.VY.fname},size(SPM.xY.VY)),SPM.xsDes);
return;
end
switch lower(varargin{1})
%=======================================================================
case 'desrepui' %-Design reporting UI
%=======================================================================
% h = spm_DesRep('DesRepUI')
% h = spm_DesRep('DesRepUI',SPM)
%-Load design data from file if not passed as argument
%-----------------------------------------------------------------------
if nargin < 2
[spmmatfile, sts] = spm_select(1,'^SPM\.mat$','Select SPM.mat');
if ~sts, return; end
swd = spm_str_manip(spmmatfile,'H');
try
load(fullfile(swd,'SPM.mat'));
catch
error(['Cannot read ' fullfile(swd,'SPM.mat')]);
end
SPM.swd = swd;
else
SPM = varargin{2};
end
%-Canonicalise data
%=======================================================================
%-Work out where design configuration has come from!
if ~isfield(SPM,'cfg')
if isfield(SPM.xX,'V'), cfg = 'SPMest';
elseif isfield(SPM.xY,'VY'), cfg = 'SPMdata';
elseif isfield(SPM,'Sess'), cfg = 'SPMcfg';
else error('Can''t fathom origin!')
end
SPM.cfg = cfg;
end
%-Work out what modality this is!
%-----------------------------------------------------------------------
try
SPM.Sess(1);
SPM.modality = 'fMRI';
catch
try
SPM.xC;
catch
SPM.xC = {};
end
SPM.modality = 'PET';
end
%-Add a scaled design matrix to the design data structure
%-----------------------------------------------------------------------
if ~isfield(SPM.xX,'nKX')
SPM.xX.nKX = spm_DesMtx('Sca',SPM.xX.X,SPM.xX.name);
end
%-Draw menu
%=======================================================================
%-Get Interactive window and delete any previous DesRepUI menu
%-----------------------------------------------------------------------
Finter = spm_figure('GetWin','Interactive');
delete(findobj(get(Finter,'Children'),'flat','Tag','DesRepUI'))
%-Draw top level menu
%-----------------------------------------------------------------------
hC = uimenu(Finter,'Label','Design',...
'Separator','on',...
'Tag','DesRepUI',...
'UserData',SPM,...
'HandleVisibility','on');
%-Generic CallBack code
%-----------------------------------------------------------------------
cb = 'tmp = get(get(gcbo,''UserData''),''UserData''); ';
%-DesMtx
%-----------------------------------------------------------------------
hDesMtx = uimenu(hC,'Label','Design Matrix','Accelerator','D',...
'CallBack',[cb,...
'spm_DesRep(''DesMtx'',tmp.xX,',...
'reshape({tmp.xY.VY.fname},size(tmp.xY.VY)),tmp.xsDes)'],...
'UserData',hC,...
'HandleVisibility','off');
if strcmp(SPM.cfg,'SPMcfg'), set(hDesMtx,'Enable','off'), end
%-Design matrix orthogonality
%-----------------------------------------------------------------------
h = uimenu(hC,'Label','Design orthogonality','Accelerator','O',...
'CallBack',[cb,...
'spm_DesRep(''DesOrth'',tmp.xX)'],...
'UserData',hC,...
'HandleVisibility','off');
%-Explore design
%-----------------------------------------------------------------------
hExplore = uimenu(hC,'Label','Explore','HandleVisibility','off');
switch SPM.modality
case 'PET'
hFnF = uimenu(hExplore,'Label','Files and factors','Accelerator','F',...
'CallBack',[cb,...
'spm_DesRep(''Files&Factors'',',...
'reshape({tmp.xY.VY.fname},size(tmp.xY.VY)),',...
'tmp.xX.I,tmp.xC,tmp.xX.sF,tmp.xsDes)'],...
'UserData',hC,...
'HandleVisibility','off');
hCovs = uimenu(hExplore,'Label','Covariates','Accelerator','C',...
'CallBack',[cb,...
'spm_DesRep(''Covs'',tmp.xX,tmp.xC)'],...
'UserData',hC,...
'HandleVisibility','off');
if isempty(SPM.xC), set(hCovs,'Enable','off'), end
case 'fMRI'
for j = 1:length(SPM.Sess)
h = uimenu(hExplore,'Label',sprintf('Session %.0f ',j),...
'HandleVisibility','off');
for k = 1:length(SPM.Sess(j).Fc)
uimenu(h,'Label',SPM.Sess(j).Fc(k).name,...
'CallBack',[cb,...
sprintf('spm_fMRI_design_show(tmp,%d,%d);',j,k)],...
'UserData',hC,...
'HandleVisibility','off')
end
end
end
hxvi = uimenu(hExplore, 'Label','Covariance structure', ...
'Callback',[cb, 'spm_DesRep(''xVi'', tmp.xVi);'], 'UserData',hC, 'HandleVisibility','off');
if ~isfield(SPM,'xVi') || (isfield(SPM.xVi,'iid') && SPM.xVi.iid) || ...
~(isfield(SPM.xVi,'V') || isfield(SPM.xVi,'Vi'))
set(hxvi,'Enable','off');
end
%-Clear, Quit, Help
%-----------------------------------------------------------------------
uimenu(hC,'Label','Clear','Accelerator','L','Separator','on',...
'CallBack','spm_results_ui(''Clear'')',...
'HandleVisibility','off');
uimenu(hC,'Label','Help','Separator','on',...
'CallBack','spm_help(''spm_DesRep'')',...
'HandleVisibility','off');
%-Pop open 'Interactive' window
%-----------------------------------------------------------------------
figure(Finter)
%-Return handle of menu
%-----------------------------------------------------------------------
varargout = {hC};
%=======================================================================
case 'files&factors' %-Summarise files & factors
%=======================================================================
% spm_DesRep('Files&Factors',fnames,I,xC,sF,xs)
if nargin<4, error('insufficient arguments'), end
fnames = varargin{2};
I = varargin{3};
xC = varargin{4};
sF = varargin{5};
if nargin<6, xs=[]; else xs = varargin{6}; end %-Structure of strings
[fnames,CPath] = spm_str_manip(fnames,'c'); %-extract common path component
nScan = size(I,1); %-#images
bL = any(diff(I,1),1); %-Multiple factor levels?
%-Get graphics window & window scaling
Fgraph = spm_figure('GetWin','Graphics');
spm_results_ui('Clear',Fgraph,0)
FS = spm('FontSizes');
%-Display header information
%-----------------------------------------------------------------------
hTax = axes('Position',[0.03,0.85,0.94,0.1],...
'DefaultTextFontSize',FS(9),...
'XLim',[0,1],'YLim',[0,1],...
'Visible','off');
text(0.5,1,'Statistical analysis: Image files & covariates...',...
'Fontsize',FS(14),'Fontweight','Bold',...
'HorizontalAlignment','center')
dx1 = 0.05;
dx2 = 0.08;
x = 0; text(x+.02,.1,'image #','Rotation',90)
if bL(4), x=x+dx1; text(x+.01,.1,sF{4},'Rotation',90), end
if bL(3), x=x+dx1; text(x+.01,.1,sF{3},'Rotation',90), end
if bL(2), x=x+dx1; text(x+.01,.1,sF{2},'Rotation',90), end
if bL(1), x=x+dx1; text(x+.01,.1,sF{1},'Rotation',90), end
for j = 1:length(xC)
n = size(xC(j).rc,2);
if n>1, tmp=xC(j).cname; else tmp={xC(j).rcname}; end
for k=1:n
x=x+dx2;
text(x,.1,tmp{k},'Rotation',90,'Interpreter','TeX')
end
end
x=x+dx2;
text(x,0.65,'Base directory:','FontWeight','Bold')
text(x,0.5,CPath,'FontSize',FS(8))
text(x,0.2,'filename tails...')
line('XData',[0 1],'YData',[0 0],'LineWidth',3,'Color','r')
%-Tabulate file & covariate information
%-----------------------------------------------------------------------
hAx = axes('Position',[0.03,0.05,0.94,0.8],...
'DefaultTextFontSize',FS(8),...
'Units','points',...
'Visible','off');
AxPos = get(hAx,'Position'); set(hAx,'YLim',[0,AxPos(4)])
dy = FS(9); y0 = floor(AxPos(4)) -dy; y = y0;
for i = 1:nScan
%-Scan indices
x = 0; text(x,y,sprintf('%03d',i))
if bL(4), x=x+dx1; text(x,y,sprintf('%02d',I(i,4))), end
if bL(3), x=x+dx1; text(x,y,sprintf('%02d',I(i,3))), end
if bL(2), x=x+dx1; text(x,y,sprintf('%02d',I(i,2))), end
if bL(1), x=x+dx1; text(x,y,sprintf('%02d',I(i,1))), end
%-Covariates
for j = 1:length(xC)
for k=1:size(xC(j).rc,2)
x=x+dx2;
text(x,y,sprintf('%6g',xC(j).rc(i,k)),...
'HorizontalAlignment','Center')
end
end
%-Filename tail(s) - could be multivariate
x=x+dx2;
text(x,y,fnames{i})
y=y-dy;
%-Paginate if necessary
if y<dy
text(0.5,0,sprintf('Page %d',spm_figure('#page')),...
'FontSize',FS(8),'FontAngle','italic')
spm_figure('NewPage',[hAx;get(hAx,'Children')])
hAx = axes('Units','points','Position',AxPos,...
'DefaultTextFontSize',FS(8),'YLim',[0,AxPos(4)],...
'Visible','off');
y = y0;
text(y,0,'continued...','FontAngle','Italic')
end
end
line('XData',[0 1],'YData',[y y],'LineWidth',3,'Color','r')
%-Display description strings
% (At bottom of current page - hope there's enough room!)
%-----------------------------------------------------------------------
if ~isempty(xs)
y = y - 2*dy;
for sf = fieldnames(xs)'
text(0.3,y,[strrep(sf{1},'_',' '),' :'],...
'HorizontalAlignment','Right','FontWeight','Bold',...
'FontSize',FS(9))
s = xs.(sf{1});
if ~iscellstr(s), s={s}; end
for i=1:numel(s)
text(0.31,y,s{i},'FontSize',FS(9))
y=y-dy;
end
end
end
%-Register last page if paginated
if spm_figure('#page')>1
text(0.5,0,sprintf('Page %d/%d',spm_figure('#page')*[1,1]),...
'FontSize',FS(8),'FontAngle','italic')
spm_figure('NewPage',[hAx;get(hAx,'Children')])
end
%-Pop up the Graphics window
%-----------------------------------------------------------------------
figure(Fgraph)
%=======================================================================
case 'xvi'
%=======================================================================
% spm_DesRep('xVi',xVi)
if nargin<2, error('insufficient arguments'), end
if ~isstruct(varargin{2}), error('covariance matrix structure required'), end
%-Display
%=======================================================================
%-Get graphics window & FontSizes
%-----------------------------------------------------------------------
Fgraph = spm_figure('GetWin','Graphics');
spm_results_ui('Clear',Fgraph,0)
FS = spm('FontSizes');
%-Title
%-----------------------------------------------------------------------
hTax = axes('Position',[0.03,0,0.94,1],...
'DefaultTextFontSize',FS(9),...
'XLim',[0,1],'YLim',[0,1],...
'Visible','off');
str='Statistical analysis: Covariance structure';
text(0.5,0.95,str,'Fontsize',FS(14),'Fontweight','Bold',...
'HorizontalAlignment','center')
line('Parent',hTax,...
'XData',[0.3 0.7],'YData',[0.92 0.92],'LineWidth',3,'Color','r')
%-Display covariance matrix
%-----------------------------------------------------------------------
hCovMtx(1) = axes('Position',[.07 .4 .6 .4]);
hCovMtxSc = [];
if isfield(varargin{2},'V')
clim = [-max(varargin{2}.V(:))/2 max(varargin{2}.V(:))]; % scale 0 to gray
hCovMtxIm(1) = imagesc(varargin{2}.V, clim);
hCovMtxSc = colorbar('vert');
set(hCovMtxSc,'Ylim',[0 clim(2)]); % cut colorbar at 0
%-Setup callbacks to allow interrogation of covariance matrix
%-----------------------------------------------------------------------
set(hCovMtxIm(1),'UserData',...
varargin{2})
set(hCovMtxIm(1),'ButtonDownFcn','spm_DesRep(''SurfxVi_CB'')')
if isfield(varargin{2},'form')
str = sprintf('Covariance structure V: %s',varargin{2}.form);
else
str = 'Covariance structure V';
end
if isfield(varargin{2},'var') && isfield(varargin{2},'dep') && ...
isfield(varargin{2},'sF') && isfield(varargin{2},'I')
r = find((max(varargin{2}.I) > 1) & ~varargin{2}.var & ~varargin{2}.dep);
if any(varargin{2}.dep)
cmstr = 'yes';
else
cmstr = 'no';
end
str = sprintf(['Covariance structure V - replications over ''%s''\n'...
'Correlated repeated measures: %s'], ...
varargin{2}.sF{r},cmstr);
end
xlabel(str);
else
text(.5,.5, 'Covariance not (yet) estimated.', 'HorizontalAlignment','center');
end
if isfield(varargin{2},'h')
hPEstAx = axes('Position',[.07 .315 .6 .025],...
'DefaultTextInterpreter','TeX');
hParEstIm = imagesc(varargin{2}.h',clim);
set(hPEstAx,...
'XLim',[0,length(varargin{2}.h)]+.5,'XTick',[1:length(varargin{2}.h)-1]+.5,'XTickLabel','',...
'YLim',[0,1]+.5,'YDir','reverse','YTick',[],...
'Box','on','TickDir','in','XGrid','on','GridLineStyle','-');
xlabel('hyperparameter estimates')
set(hParEstIm,'UserData',varargin{2}.h)
set(hParEstIm,'ButtonDownFcn','spm_DesRep(''SurfHPEstIm_CB'')')
else
hPEstAx = [];
end;
spm_figure('NewPage',[hCovMtx;get(hCovMtx,'Children');hPEstAx;get(hPEstAx,'Children');hCovMtxSc])
%-Show components of covariance matrix
%-----------------------------------------------------------------------
if isfield(varargin{2},'Vi')
for k = 1:length(varargin{2}.Vi)
%-Display covariance component xVi.Vi{k}
%-----------------------------------------------------------------------
hCovMtx(k+1) = axes('Position',[.07 .4 .6 .4]);
hCovMtxIm(k+1) = imagesc(varargin{2}.Vi{k});
xlabel(sprintf('Covariance component Vi{%d}', k));
if k<length(varargin{2}.Vi)
spm_figure('NewPage',[hCovMtx(k+1);get(hCovMtx(k+1),'Children')])
end
end
if spm_figure('#page')>1
spm_figure('NewPage',[hCovMtx(k+1);get(hCovMtx(k+1),'Children')])
end
end
%=======================================================================
case {'desmtx','desorth'} %-Display design matrix / design orthogonality
%=======================================================================
% spm_DesRep('DesMtx',xX,fnames,xs)
% spm_DesRep('DesOrth',xX)
if nargin<2, error('insufficient arguments'), end
if ~isstruct(varargin{2}), error('design matrix structure required'), end
if nargin<3, fnames={}; else fnames=varargin{3}; end
if nargin<4, xs=[]; else xs=varargin{4}; end
desmtx = strcmpi(varargin{1},'desmtx');
%-Locate DesMtx (X), scaled DesMtx (nX) & get parameter names (Xnames)
%-----------------------------------------------------------------------
if isfield(varargin{2},'xKXs') && ...
~isempty(varargin{2}.xKXs) && isstruct(varargin{2}.xKXs)
iX = 1;
[nScan,nPar] = size(varargin{2}.xKXs.X);
elseif isfield(varargin{2},'X') && ~isempty(varargin{2}.X)
iX = 0;
[nScan,nPar] = size(varargin{2}.X);
else
error('Can''t find DesMtx in this structure!')
end
if isfield(varargin{2},'nKX') && ~isempty(varargin{2}.nKX)
inX = 1; else inX = 0; end
if isfield(varargin{2},'name') && ~isempty(varargin{2}.name)
Xnames = varargin{2}.name; else Xnames = {}; end
%-Compute design orthogonality matrix if DesOrth
%-----------------------------------------------------------------------
if ~desmtx
sw = warning('off','MATLAB:divideByZero');
if iX
tmp = sqrt(sum(varargin{2}.xKXs.X.^2));
O = varargin{2}.xKXs.X'*varargin{2}.xKXs.X./kron(tmp',tmp);
tmp = sum(varargin{2}.xKXs.X);
else
tmp = sqrt(sum(varargin{2}.X.^2));
O = varargin{2}.X'*varargin{2}.X./kron(tmp',tmp);
tmp = sum(varargin{2}.X);
end
warning(sw);
tmp = abs(tmp)<eps*1e5;
bC = kron(tmp',tmp);
end
%-Display
%=======================================================================
%-Get graphics window & FontSizes
%-----------------------------------------------------------------------
Fgraph = spm_figure('GetWin','Graphics');
spm_results_ui('Clear',Fgraph,0)
FS = spm('FontSizes');
%-Title
%-----------------------------------------------------------------------
hTax = axes('Position',[0.03,0,0.94,1],...
'DefaultTextFontSize',FS(9),...
'XLim',[0,1],'YLim',[0,1],...
'Visible','off');
str='Statistical analysis: Design'; if ~desmtx, str=[str,' orthogonality']; end
text(0.5,0.95,str,'Fontsize',FS(14),'Fontweight','Bold',...
'HorizontalAlignment','center')
line('Parent',hTax,...
'XData',[0.3 0.7],'YData',[0.92 0.92],'LineWidth',3,'Color','r')
%-Display design matrix
%-----------------------------------------------------------------------
hDesMtx = axes('Position',[.07 .4 .6 .4]);
if inX %-Got a scaled DesMtx
hDesMtxIm = image((varargin{2}.nKX + 1)*32);
elseif iX %-No scaled DesMtx, DesMtx in .xKXs structure
hDesMtxIm = image((spm_DesMtx('sca',varargin{2}.xKXs.X,Xnames) + 1)*32);
else %-No scaled DesMtx, no .xKXs, DesMtx in .X
hDesMtxIm = image((spm_DesMtx('sca',varargin{2}.X, Xnames) + 1)*32);
end
STick = spm_DesRep('ScanTick',nScan,32);
PTick = spm_DesRep('ScanTick',nPar,32);
set(hDesMtx,'TickDir','out',...
'XTick',PTick,'XTickLabel','',...
'YTick',STick,'YTickLabel','')
if desmtx
xlabel('parameters'), ylabel('images')
else
set(get(hDesMtx,'Xlabel'),...
'Position',get(get(hDesMtx,'Ylabel'),'Position'),...
'Rotation',90')
xlabel('design matrix')
end
%-Parameter names
if ~isempty(Xnames)
axes('Position',[.07 .8 .6 .1],'Visible','off',...
'DefaultTextFontSize',FS(8),'DefaultTextInterpreter','TeX',...
'XLim',[0,nPar]+0.5)
for i=PTick, text(i,.05,Xnames{i},'Rotation',90), end
end
%-Filenames
% ( Show at most 32, showing every 2nd/3rd/4th/... as necessary to pair )
% ( down to <32 items. Always show last item so #images is indicated. )
if desmtx && ~isempty(fnames)
axes('Position',[.68 .4 .3 .4],'Visible','off',...
'DefaultTextFontSize',FS(8),...
'YLim',[0,nScan]+0.5,'YDir','Reverse')
for i = STick
try
str = fnames(i,:);
catch
str = fnames{i};
end
text(0,i,spm_str_manip(str,'Ca35'));
end
end
%-Setup callbacks to allow interrogation of design matrix
%-----------------------------------------------------------------------
if iX, set(hDesMtxIm,'UserData',...
struct('X',varargin{2}.xKXs.X,'Xnames',{Xnames},'fnames',{fnames}))
else set(hDesMtxIm,'UserData',...
struct('X',varargin{2}.X, 'Xnames',{Xnames},'fnames',{fnames}))
end
set(hDesMtxIm,'ButtonDownFcn','spm_DesRep(''SurfDesMtx_CB'')')
if desmtx
%-Parameter estimability/uniqueness
%---------------------------------------------------------------
hPEstAx = axes('Position',[.07 .315 .6 .025],...
'DefaultTextInterpreter','TeX');
if iX, est = spm_SpUtil('IsCon',varargin{2}.xKXs);
else est = spm_SpUtil('IsCon',varargin{2}.X); end
hParEstIm = image((est+1)*32);
set(hPEstAx,...
'XLim',[0,nPar]+.5,'XTick',[1:nPar-1]+.5,'XTickLabel','',...
'YLim',[0,1]+.5,'YDir','reverse','YTick',[],...
'Box','on','TickDir','in','XGrid','on','GridLineStyle','-');
xlabel('parameter estimability')
text((nPar+0.5 + nPar/30),1,...
'(gray \rightarrow \beta not uniquely specified)',...
'Interpreter','TeX','FontSize',FS(8))
set(hParEstIm,'UserData',struct('est',est,'Xnames',{Xnames}))
set(hParEstIm,'ButtonDownFcn','spm_DesRep(''SurfEstIm_CB'')')
else
%-Design orthogonality
%---------------------------------------------------------------
hDesO = axes('Position',[.07 .18 .6 .2]);
tmp = 1-abs(O); tmp(logical(tril(ones(nPar),-1))) = 1;
hDesOIm = image(tmp*64);
set(hDesO,'Box','off','TickDir','out',...
'XaxisLocation','top','XTick',PTick,'XTickLabel','',...
'YaxisLocation','right','YTick',PTick,'YTickLabel','',...
'YDir','reverse')
tmp = [1,1]'*[[0:nPar]+0.5];
line('Xdata',tmp(1:end-1)','Ydata',tmp(2:end)')
xlabel('design orthogonality')
set(get(hDesO,'Xlabel'),'Position',[0.5,nPar,0],...
'HorizontalAlignment','left',...
'VerticalAlignment','top')
set(hDesOIm,...
'UserData',struct('O',O,'bC',bC,'Xnames',{Xnames}),...
'ButtonDownFcn','spm_DesRep(''SurfDesO_CB'')')
if ~isempty(Xnames)
axes('Position',[.69 .18 0.01 .2],'Visible','off',...
'DefaultTextFontSize',FS(10),...
'DefaultTextInterpreter','TeX',...
'YDir','reverse','YLim',[0,nPar]+0.5)
for i=PTick
text(0,i,Xnames{i},'HorizontalAlignment','left')
end
end
end
%-Design descriptions
%-----------------------------------------------------------------------
if desmtx
str = 'Design description...';
line('Parent',hTax,...
'XData',[0.3 0.7],'YData',[0.28 0.28],'LineWidth',3,'Color','r')
hAx = axes('Position',[0.03,0.05,0.94,0.22],'Visible','off');
else
str = '';
line('Parent',hTax,...
'XData',[0.3 0.7],'YData',[0.14 0.14],'LineWidth',3,'Color','r')
hAx = axes('Position',[0.03,0.05,0.94,0.08],'Visible','off');
xs = struct('Measure', ['abs. value of cosine of angle between ',...
'columns of design matrix'],...
'Scale', {{ 'black - colinear (cos=+1/-1)';...
'white - orthogonal (cos=0)';...
'gray - not orthogonal or colinear'}});
end
if ~isempty(xs)
set(hAx,'Units','points');
AxPos = get(hAx,'Position');
set(hAx,'YLim',[0,AxPos(4)])
dy = FS(9); y0 = floor(AxPos(4)) -dy; y = y0;
text(0.3,y,str,...
'HorizontalAlignment','Center',...
'FontWeight','Bold','FontSize',FS(11))
y=y-2*dy;
for sf = fieldnames(xs)'
text(0.3,y,[strrep(sf{1},'_',' '),' :'],...
'HorizontalAlignment','Right','FontWeight','Bold',...
'FontSize',FS(9))
s = xs.(sf{1});
if ~iscellstr(s), s={s}; end
for i=1:numel(s)
text(0.31,y,s{i},'FontSize',FS(9))
y=y-dy;
end
end
end
%-Pop up the Graphics window
%-----------------------------------------------------------------------
figure(Fgraph)
%=======================================================================
case 'covs' %-Plot and describe covariates (one per page)
%=======================================================================
% spm_DesRep('Covs',xX,xC)
if nargin<3, error('insufficient arguments'), end
xC = varargin{3}; %-Struct array of covariate information
if ~isstruct(varargin{2}), error('design matrix structure required'), end
if isempty(xC), spm('alert!','No covariates!',mfilename), return, end
%-Get graphics window & window scaling
Fgraph = spm_figure('GetWin','Graphics');
spm_results_ui('Clear',Fgraph,0)
FS = spm('FontSizes');
%-Title
%-----------------------------------------------------------------------
hTax = axes('Position',[0.03,0,0.94,1],...
'DefaultTextFontSize',FS(9),...
'XLim',[0,1],'YLim',[0,1],...
'Visible','off');
text(0.5,0.95,'Statistical analysis: Covariates',...
'Fontsize',FS(14),'Fontweight','Bold',...
'HorizontalAlignment','center')
text(0.5,0.82,'(covariates plotted over transposed design matrix)',...
'FontSize',FS(8),'HorizontalAlignment','center')
line('XData',[0.3 0.7],'YData',[0.92 0.92],'LineWidth',3,'Color','r')
line('XData',[0.3 0.7],'YData',[0.44 0.44],'LineWidth',3,'Color','r')
%-Design matrix (as underlay for plots) and parameter names
%-----------------------------------------------------------------------
[nScan,nPar] = size(varargin{2}.X);
if isfield(varargin{2},'name') && ~isempty(varargin{2}.name)
Xnames = varargin{2}.name; else Xnames = {}; end
%-Design matrix
hDesMtx = axes('Position',[.1 .5 .7 .3]);
if isfield(varargin{2},'nKX') && ~isempty(varargin{2}.nKX)
image(varargin{2}.nKX'*32+32)
elseif isfield(varargin{2},'xKXs') && ~isempty(varargin{2}.xKXs)
image(spm_DesMtx('sca',varargin{2}.xKXs.X,Xnames)*32+32)
else
image(spm_DesMtx('sca',varargin{2}.X,Xnames)*32+32)
end
set(hDesMtx,'Visible','off')
%-Parameter names
hParAx = axes('Position',[.8 .5 .2 .3],'Visible','off',...
'DefaultTextFontSize',FS(8),'DefaultTextInterpreter','TeX',...
'YLim',[0.5,nPar+0.5],'YDir','Reverse');
hPNames = zeros(nPar,1);
for i = 1:nPar, hPNames(i) = text(.05,i,Xnames{i}); end
%-Covariates - one page each
%-----------------------------------------------------------------------
for i = 1:length(xC)
%-Title
%---------------------------------------------------------------
hSTitle = text(0.5,0.87,sprintf('%d : %s',i,xC(i).rcname),...
'Parent',hTax,...
'HorizontalAlignment','center',...
'FontSize',FS(13),'FontWeight','Bold');
%-Plot
%---------------------------------------------------------------
hAx = axes('Position',[.1 .5 .7 .3],...
'TickDir','out','Box','off','Color','none',...
'NextPlot','add',...
'XLim',[0,nScan]+0.5);
plot(xC(i).rc,'LineWidth',2)
if nScan<48, plot(xC(i).rc,'.k','MarkerSize',20); end
xlabel('image #')
ylabel('covariate value')
%-Descriptions
%---------------------------------------------------------------
hDAx = axes('Position',[0.03,0.1,0.94,0.30],'Visible','off');
set(hDAx,'Units','points');
tmp = get(hDAx,'Position');
set(hDAx,'YLim',[0,tmp(4)])
dy = FS(9); y0 = floor(tmp(4)) -dy; y = y0;
%-Description strings from xC(i).descrip
text(0.3,y,'Details :',...
'HorizontalAlignment','Right',...
'FontWeight','Bold','FontSize',FS(9))
s = xC(i).descrip;
if ~iscellstr(s), s={s}; end