Changeset 153 for prdatasets/pr_download_uci.m
- Timestamp:
- 01/12/20 23:00:36 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
prdatasets/pr_download_uci.m
r151 r153 31 31 32 32 function varargout = pr_download_uci(name,varargin) 33 %% 33 %% make sur there is a dta subdir 34 persistent DATADIREXISTS 35 if isempty(DATADIREXISTS) 36 datasubdir = fullfile(fileparts(which(mfilename)),'data'); 37 if exist(datasubdir,'dir') ~= 7 38 mkdir(datasubdir); 39 end 40 DATADIREXISTS = true; 41 end 34 42 35 43 %% handle old format
Note: See TracChangeset
for help on using the changeset viewer.