https://github.com/kul-forbes/ForBES
Revision dc65c2366e10a76b7166228adb65acb9a20d68a0 authored by Pantelis Sopasakis on 05 March 2018, 20:56:03 UTC, committed by GitHub on 05 March 2018, 20:56:03 UTC
crash of Forbes on Matlab 2017a
2 parent s 2d876d9 + 8253a09
Raw File
Tip revision: dc65c2366e10a76b7166228adb65acb9a20d68a0 authored by Pantelis Sopasakis on 05 March 2018, 20:56:03 UTC
Merge pull request #3 from Zilleplus/master
Tip revision: dc65c23
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