Changeset 156
- Timestamp:
- 01/13/20 14:17:08 (5 years ago)
- Location:
- prextra
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
prextra/prtools_export.m
r143 r156 5 5 % Creates, if FLAG is true an export version of PRTools in 6 6 % http://prtools.tudelft.org/files/prtools.zip. 7 % The version files prtools_version.txt is updated as well. 7 8 % 8 9 % If FLAG is false (default) just zip-files in EXPORTDIR are created for … … 153 154 disp(' export files have been stored on the website.') 154 155 disp(' Please check and adjust release notes and known problems on website') 156 webversion(['Version ' pver ' ' date]); 155 157 close(ftpsite) 156 158 -
prextra/toolbox_export.m
r149 r156 22 22 23 23 if nargin < 4, exclude = []; end 24 if nargin < 3, exportdir = 'K:\insy\PRLab\Matlab\prtools_export'; end 24 if nargin < 3 || isempty(exportdir) 25 exportdir = 'K:\insy\PRLab\Matlab\prtools_export'; 26 end 25 27 if nargin < 2 || isempty(copyflag); copyflag = false; end 26 28 if ischar(exclude), exclude = {exclude}; end
Note: See TracChangeset
for help on using the changeset viewer.