source: MML/trunk/machine/SOLEIL/common/toolbox/GUILayout/uninstall.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 11 years ago

Initial import--MML version from SOLEIL@2013

File size: 449 bytes
Line 
1function uninstall()
2%uninstall  remove the layout package from the MATLAB path
3%
4%   uninstall() removes the layout tools from the MATLAB path.
5%
6%   Examples:
7%   >> uninstall()
8%
9%   See also: install
10
11%   Copyright 2008-2010 The MathWorks Ltd.
12%   1.1   
13%   2012/05/08 08:02:59
14
15thisdir = fileparts( mfilename( 'fullpath' ) );
16
17rmpath( thisdir );
18rmpath( fullfile( thisdir, 'layoutHelp' ) );
19rmpath( fullfile( thisdir, 'Patch' ) );
20savepath();
Note: See TracBrowser for help on using the repository browser.