https://github.com/kul-forbes/ForBES
Raw File
Tip revision: 44e002c1d0940beacc69a5531830e50bf84b77d5 authored by Willem Melis on 09 May 2018, 14:44:22 UTC
removed c++ style comment
Tip revision: 44e002c
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