spm_get, spm_select, and char

1 min read

The mostly used functions I use in SPM is spm_get (for spm2) and spm_select (spm5 and 8).  These two functions are used to get files (usually image files). Frankly speaking I like spm_get much better as it’s intuitive and easy to use. Here is how to use them:

Select some image files interactively (a window pops up and users select),

    p = spm_get([],'*.img','Select the image(s)');
    p = spm_select([0:200],'IMAGE','Select the image(s)');

Select some files automatically,

    p = spm_get('files', pwd, '*.img');
    p = spm_select('list', pwd, '.*img');

The filter in spm_select is different from that in spm_get. In spm_get, the filter is traditional linux/windows file filters such as *.img, ???.hdr etc. In spm_select the filters are regular expressions. For example, to get all files starting with I and end with .img, you put something like ‘^I.*\.img’.

To concatenate two file lists vertically, you can use char function:

    p = char(p1, p2);

char will automatically fill blanks so p1 and p2 are of the same columns to be vertically concatenated.

Below are more examples of spm_get and spm_select:

% select some files interactively and save the file names into a variable P
P = spm_get
% select 6 (not 5, not 7, exactly 6) files interactively
P = spm_get(6)
% select 2 to 4 files interactively
P = spm_get([2:4])
% select 0 to 8 files interactively
P = spm_get([0:8])
% automatically get all imaging files in the directory c:\abc
P = spm_get('Files', 'c:\abc', '*.img')
% automatically get all mat files starting with e in the current working directory
P = spm_get('Files', pwd, 'e*.mat')
% automatically get the mat files in the directory c:\abc which satisfy the following condition: the file names end with f and another two characters. Pay attention to the usage of * and ?
P = spm_get('Files', 'c:\abc', '*f??.mat')
% select some (<200) folders interactively. Now you see, negative numbers means to select folder instead of files
P = spm_get([-200:0])

% select some files interactively and save the file names into a variable P
P = spm_select
% select 6 (not 5, not 7, exactly 6) files interactively
P = spm_select(6)
% select 2 to 4 files interactively
P = spm_select([2 4])
% automatically get all imaging files in the directory c:\abc. Files are saved in P and directories are saved in dirs
[P, dirs] = spm_select('list', 'c:\abc', 'img')



文献鸟 618 活动


写作助手,把中式英语变成专业英文


Want to receive new post notification? 有新文章通知我

第六十五期fNIRS Journal Club通知2025/8/30, 10am 兰月教授 陈嘉琳

该文章的声音简介(中文版): 该文章的声音简介(英文版): 在运动想象型脑机接口 (MI-BCI)训练中,不少使用者表现出控制效果不佳,即使经过训练也难以达到理想水平的“BCI 无效性”现象。RDLP
Wanling Zhu
15 sec read

第六十四期fNIRS Journal Club视频 黄润玉

Youtube: https://youtu.be/8lyoR_K2BYA 优酷:https://v.youku.com/v_show/id_XNjQ4MjU2Mzk3Mg==.html 随着全球老龄
Wanling Zhu
14 sec read

第六十四期fNIRS Journal Club通知2025/7/12, 10am 黄润玉

该文章的声音简介(中文版): 该文章的声音简介(英文版): 随着全球老龄化加剧,越来越多老年人面临数字化适应、子女异地独居适应等问题。在青年志愿者人数明显不足以覆盖老龄人口的现实情况下,让老年同龄人进
Wanling Zhu
9 sec read

2 Replies to “spm_get, spm_select, and char”

  1. Hi Dear Xu,
    I want to work with MNET Toolbox in MATLAB. When I click studyList for importing data, I get message “Undefined function ‘spm_select’ for input arguments of type ‘double’.”
    May you help me with this message ? should I install more things ?

    thanks in advance

Leave a Reply to Fatemeh Cancel reply

Your email address will not be published. Required fields are marked *