SPM/Standalone

< SPM

Introduction

A standalone SPM is a version of SPM that has been compiled using the MATLAB Compiler, see:

so that it does not require the availability of a MATLAB licence.

A standalone version of SPM12 is available upon request for most platforms (Windows, Linux and MacOS 64 bit). Please contact fil.spm@ucl.ac.uk.

Installation

Following your request, you will be given instructions to download the following components:

Installation of the MCR

You need to do this operation only once, even if you use several versions of standalone SPM.

Run the MCRInstaller executable you downloaded and follow the instructions.

Windows installation requires to have administrative privileges and you might also have to install the Visual C++ Redistributable Package (vcredist_*.exe), that can be found in the same folder as the MCRInstaller. We also recommend you restart Windows at this point.

If you run into problems, or want to learn more, see:

To install the MCR on Linux from the command line, type:

chmod 755 MCRInstaller.bin
./MCRInstaller.bin -P bean421.installLocation="MCR" -silent

Installation of the CTF

Unzip the spm12_rxxx.zip archive containing the SPM Component Technology File (CTF) in an appropriate folder. It contains a number of small executables for each supported platform and a large spm12.ctf file containing the compiled version of SPM12 itself.

The first time the standalone application will be executed, the CTF file will be unpacked in a subfolder so if you installed the CTF in a folder that requires administrative permission for write access, you should execute the application once under those privileges -- see below.

On Mac, you also need to unzip the spm12_maci64.zip archive.

Usage

To start SPM graphical user interface:

./run_spm12.sh /usr/local/MATLAB/MATLAB_Compiler_Runtime/v713/

where the argument is the path to your MCR installation.

./run_spm12.sh /Applications/MATLAB/MATLAB_Compiler_Runtime/v713/

where the argument is the path to your MCR installation.

The first execution should take longer to start as the CTF file will be unpacked. When installing SPM system-wide, you should do the first unpacker execution as root, i.e.

./run_spm12.sh /usr/local/MATLAB/MATLAB_Compiler_Runtime/v713/ quit

On Linux/Mac, you can edit the Shell script run_spm12.sh to hardcode the location of the MCR installation, thus removing the need of providing it on the command line.

The other arguments that can be used are the modality (as in `spm fmri`) or the keyword `batch` to start directly the batch system window, e.g.:

./run_spm12.sh /Applications/MATLAB/MATLAB_Compiler_Runtime/v713/ fmri
./run_spm12.sh /Applications/MATLAB/MATLAB_Compiler_Runtime/v713/ batch

Furthermore, `batch` followed by a batch filename (*.mat or *.m) will start SPM, execute the batch and quit:

./run_spm12.sh /Applications/MATLAB/MATLAB_Compiler_Runtime/v713/ batch mybatch.mat

Trouble-shooting

The first thing to try is restarting your computer, if you haven't already, since Windows can fail to find this dll even when the path is correctly set if it hasn't been restarted. If you still have problems, see: http://www.mathworks.com/support/solutions/en/data/1-1IW46N/

You need to set variable MCR_INHIBIT_CTF_LOCK to 1, see this.

Change the last line of run_spm12.sh so that it reads:

`dirname $0`/${MACAPP}spm12_${MWE_ARCH} $*

All recent versions of the standalone SPM are compiled with the "-R -singleCompThread" flag in mcc so that they will use a single thread at runtime.

Previous version r4290, was not using this compilation option so you might want to have your MATLAB script to start with maxNumCompThreads(1); to have the same effect.

Try installing XQuartz (you must logout and back in again after installing XQuartz).

You need to install the package containing libXp on your Linux platform:

yum install libXp.x86_64

Run the standalone as root once, i.e. start the command line with sudo.

Frequently Asked Questions

No: http://www.mathworks.com/support/solutions/en/data/1-1ARNS/

No: only core SPM toolboxes are available, contributed SPM toolboxes are not present and cannot be added without a whole recompilation.

Have a look at config/spm_make_standalone.m and spm_standalone.m in your SPM installation.

Open MATLAB, at the command line, addpath the spm directory (if not done already), goto the config subdirectory, and run spm_make_standalone. You will need to wait some minutes. Matlab needs either the Signal Processing Toolbox installed, or in spm_make_standalone.m the line with '-N','-p',fullfile(matlabroot,'toolbox','signal') needs to be deleted.

On Linux, for achieving menu entries, you can install an appropriate .desktop file and an icon file for SPM. For example, save the following as spm12.desktop (modify according to your needs/MCR version):

 [Desktop Entry]
 Name=spm12
 GenericName=SPM12
 Comment=Statistical Parametric Mapping
 Exec=/usr/local/SPM/spm12/run_spm12.sh /usr/local/MATLAB/MATLAB_Compiler_Runtime/v717
 Icon=spm
 Terminal=false
 Type=Application
 Categories=Education;Science;

Additionally get the SPM icon from http://www.fil.ion.ucl.ac.uk/spm/favicon.ico and convert it to an png file, name it spm.png (this is the one referred to in the .desktop file as icon).

Then (package xdg-utils required) execute in a terminal:

 xdg-desktop-menu install --novendor spm12.desktop
 xdg-icon-resource install --novendor --size 32 spm.png

To deinstall desktop and icon file run

 xdg-icon-resource uninstall --size 32 spm
 xdg-desktop-menu uninstall spm12.desktop

Documentation

The MATLAB Compiler Toolbox presentation:

The MATLAB Compiler Toolbox documentation:

The MATLAB Compiler Support page:

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.