User Tools

Site Tools


matlab:matlab_fieldtrip

This is an old revision of the document!


MATLAB FieldTrip

The issue with functions from /external replacing original MATLAB functions:

Use the following in your custom startup.m

addpath('Y:\Sources\fieldtrip-20190130'); % or other path to fieldtrip
ft_defaults
 
[ftver, ftpath] = ft_version;
rmpath(fullfile(ftpath, 'external', 'signal'))
rmpath(fullfile(ftpath, 'external', 'stats'))
rmpath(fullfile(ftpath, 'external', 'images'))

… or just execute

https://github.com/dagdpz/test_FT/blob/master/test_FT_initialize.m on clean MATLAB path (i.e. without added FieldTrip)

http://www.fieldtriptoolbox.org/faq/can_i_prevent_external_toolboxes_from_being_added_to_my_matlab_path/

matlab/matlab_fieldtrip.1589279502.txt.gz · Last modified: 2022/12/29 07:15 (external edit)