https://github.com/kul-forbes/ForBES
Revision a1c3894f399980ecae7af600559a9cc24e7b461e authored by Lorenzo Stella on 25 January 2017, 11:25:44 UTC, committed by Lorenzo Stella on 25 January 2017, 11:25:44 UTC
1 parent 7c2519e
Raw File
Tip revision: a1c3894f399980ecae7af600559a9cc24e7b461e authored by Lorenzo Stella on 25 January 2017, 11:25:44 UTC
added function value
Tip revision: a1c3894
forbes_uninstall.m
% Remove ForBES directory from MATLAB's path
forbes_path = fileparts(mfilename('fullpath'));
library_path = fullfile(forbes_path, 'library');
cones_path = fullfile(forbes_path, 'cones');
private_path = fullfile(forbes_path, 'private');
display(['Removing ForBES directory from MATLAB path: ', forbes_path]);
rmpath(forbes_path);
display(['Removing ForBES library from MATLAB path: ', library_path]);
rmpath(library_path);
savepath;

display('ForBES was succesfully removed from MATLAB path');

clear forbes_path library_path cones_path private_path
back to top