help > PPI in SPM12
Showing 1-3 of 3 posts
Display:
Results per page:
Nov 10, 2015  08:11 AM | Rebecca Rebi
PPI in SPM12
Good morning,
is it possible to set gPPI to work in SPM12?

Thanks!
Nov 10, 2015  11:11 PM | Donald McLaren
RE: PPI in SPM12
Yes. Make sure that line ~287 in PPPI.m reads:
if ~strcmp(spm('Ver'),'SPM8') && ~strncmpi(spm('Ver'),'SPM12',5)

The current is probably:
if ~strcmp(spm('Ver'),'SPM8')

or

if ~strcmp(spm('Ver'),'SPM8') && ~strcmp(spm('Ver'),'SPM12b')
Nov 11, 2015  12:11 PM | Rebecca Rebi
RE: PPI in SPM12
Thank you!