What are the MATLAB requirements for using FieldTrip?

We try to develop FieldTrip in such a way that it works with the latest MATLAB release on the most popular operating system platforms, but at the same time we try to have it work with as many older MATLAB versions as possible.

However, the MATLAB syntax and the availability of functions in the standard Mathworks toolboxes changes over time. Consequently, sometimes we will use MATLAB code that is only supported from a certain version upwards. In general we attempt to support MATLAB versions up to 5 years old.

An online poll in April 2011 showed that a large quantity of our users access the FieldTrip toolbox with a Matlab version younger than 2006 (<5 years). The full results can be found here.

MATLAB includes a large number of functions in standard toolboxes that come with every installation, but certain functions are included in additional (commercial) toolboxes from Mathworks, such as the signal processing or the statistics toolbox. Whether you need to buy these toolboxes depends on whether you want to use specific functionality in FieldTrip. We try to avoid using these additional Mathworks toolboxes to the extent that we will look for alternatives (e.g. from Octave) or use drop-in replacement functions for certain functions, as long as the time required to implement these alternatives is not too large.

The following functions depend on the Mathworks “images” toolbox

  • ft_sourceplot
  • ft_volumesegment
  • ft_read_mri

The following functions depend on the Mathworks “optim” toolbox

  • warp_optim
  • dipole_fit

The following functions depend on the Mathworks “signal” toolbox

  • ft_mvaranalysis
  • ft_resampledata
  • ft_preproc_bandpassfilter
  • ft_preproc_bandstopfilter
  • ft_preproc_denoise
  • ft_preproc_highpassfilter
  • ft_preproc_hilbert
  • ft_preproc_lowpassfilter
  • ft_preproc_medianfilter
  • ft_preproc_resample
  • ft_specest_hilbert
  • ft_specest_mtmconvol
  • ft_specest_mtmfft
  • ft_spiketriggeredspectrum_convol
  • ft_spiketriggeredspectrum_fft

The following functions depend on the Mathworks “stats” toolbox

  • ft_connectivitysimulation
  • ft_headmovement
  • ft_qualitycheck
  • ft_regressconfound
  • ft_sourcedescriptives
  • ft_statistics_stats
  • ft_stratify
  • ft_datatype_spike
  • ft_statfun_depsamplesFmultivariate
  • ft_statfun_indepsamplesF
  • ft_statfun_indepsamplesZcoh
  • ft_spike_isi
  • ft_spike_plot_isi
  • ft_spike_plot_isireturn
  • ft_spike_plot_jpsth
  • ft_spike_plot_raster
  • ft_spike_waveform
  • ft_spike_xcorr
  • ft_spikesorting
  • ft_spiketriggeredspectrum_convol
2013/01/23 15:57 · jmhorschig

Replacements for functions from Mathworks toolboxes

To prevent unnecessary dependencies on functions from additional Mathworks toolboxes, FieldTrip includes a number of drop-in replacement functions with the same behaviour as their MATLAB counterpart.

Alternatives are provided for the following functions from the “stats” toolbox

  • nansum, nanstd, etc.
  • biocdf
  • binopdf
  • tcdf
  • range

Alternatives are provided for the following functions from the “signal” toolbox

  • barthannwin
  • bilinear
  • blackmanharris
  • bohmanwin
  • boxcar
  • butter
  • filtfilt
  • flattopwin
  • gausswin
  • hann
  • hanning
  • hilbert
  • kaiser
  • nuttallwin
  • parzenwin
  • rectwin
  • triang
  • tukeywin
  • window

Alternatives are provided for the following functions from the “images” toolbox

  • rgb2hsv
2016/03/17 08:55 · robert

Which external toolboxes are used by FieldTrip?

Besides the non-free Mathworks toolboxes that are used by some functions, FieldTrip also makes use of other free toolboxes for certain functionality, such as access to specific file formats. Using these external toolboxes allows us to focus on specifically improving FieldTrip and to join forces with other open-source software projects. Whether you need these non-commercial external toolboxes depends on the dataformats that you will use and whether you want to use the specific functionality. Most of these are also developed as open source projects and they all can be downloaded from the internet. Some of them are not open source, but can be redistributed in compiled form (e.g. mex files, p-files, compiled binaries). There are also certain toolboxes that FieldTrip can use which have even more strict copyright restrictions attached (e.g. signing a Non-Disclosure Agreement), which we are not allowed to redistribute.

A considerable number of external toolboxes is included in the FieldTrip release zip file inside the “fieldtrip/external” subdirectory. These include

  • afni matlab functions (to read AFNI data)
  • biosig (to read various EEG file formats)
  • eeglab (only for independent component analysis)
  • megdp (to read Neuromag fif data)
  • spm2 (to read some MRI formats, for spatial normalization and segmentation)
  • spm8 (to read some MRI formats, for spatial normalization and segmentation)
  • ctf (to read CTF data)
  • mne (to read Neuromag fif data)
  • yokogawa (to read data from the Yokogawa MEG system)
  • dipoli (for forward EEG modeling using BEM)
  • simbio (for forward EEG modeling using FEM)

Although we distribute these toolboxes along with FieldTrip to facilitate their use, we do not develop or support them. Each of the corresponding toolboxes has its own license agreement, and in the corresponding directories you can find more information on whom is responsible for them.

The following toolboxes are also used for specific computations, but are not included in the default FieldTrip release. You can download them seperately and place then in the “fieldtrip/external” directory (where they will be automatically found) or anywhere else on your path.

  • nlxnetcom
  • meg-pd
  • meg-calc
  • tcp_udp_ip
2011/05/12 09:28