1 | %LOADMATFILE Load matfile for this mfile, if it exist
|
---|
2 | %
|
---|
3 | % A = LOADMATFILE(MATFILE)
|
---|
4 | %
|
---|
5 | % Loads the dataset stored in the matfile. Default matfile is the name of
|
---|
6 | % the calling routine. The output A is empty if MATFILE does not exist.
|
---|
7 | %
|
---|
8 | % [A1,A2,..] = LOADMATFILE(MATFILE,NARGOUTCOUNT)
|
---|
9 | %
|
---|
10 | % In case multiple matfiles are stored for the calling routine, it is
|
---|
11 | % assumed they all contain a dataset: train set, test set, validation set,
|
---|
12 | % etcetera. In case NARGOUTCOUNT (NARGOUT of the calling routine) equals 1,
|
---|
13 | % the combined dataset is loaded and returned in A (A1).
|
---|
14 | % In case NARGOUTCOUNT > 1, the subsets are are loaded into A1, A2, ...
|
---|
15 | %
|
---|
16 | % SEE ALSO
|
---|
17 | % DATASETS, PRDATASETS, SAVEMATFILE, PR_DOWNLOAD_UCI
|
---|
18 |
|
---|
19 | function varargout = loadmatfile(name)
|
---|
20 |
|
---|
21 | varargout = cell(1,nargout);
|
---|
22 |
|
---|
23 | if nargin < 1 || isempty(name)
|
---|
24 | name = callername;
|
---|
25 | end
|
---|
26 | matfile = fullfile(fullfile(fileparts(which(name)),'data'),name);
|
---|
27 |
|
---|
28 | if nargout == 1
|
---|
29 | varargout{1} = loadmatf([matfile '.mat']);
|
---|
30 | else
|
---|
31 | for i=1:nargout
|
---|
32 | varargout{i} = loadmatf([matfile '_' num2str(i) '.mat']);
|
---|
33 | end
|
---|
34 | end
|
---|
35 |
|
---|
36 | return
|
---|
37 |
|
---|
38 | function a = loadmatf(matfile)
|
---|
39 | if exist(matfile,'file') == 2
|
---|
40 | warning('OFF','MATLAB:indeterminateFields');
|
---|
41 | s = load(matfile);
|
---|
42 | warning('ON','MATLAB:indeterminateFields');
|
---|
43 | fields = fieldnames(s);
|
---|
44 | a = s.(fields{1});
|
---|
45 | a = pr_dataset(a); % take care of prtools4 and prtools5 datasets
|
---|
46 | else
|
---|
47 | a = [];
|
---|
48 | end
|
---|
49 | return
|
---|
50 |
|
---|
51 | function name = callername
|
---|
52 | [ss,dummy] = dbstack;
|
---|
53 | if length(ss) < 3
|
---|
54 | name = [];
|
---|
55 | else
|
---|
56 | name = ss(3).name;
|
---|
57 | end
|
---|
58 | return |
---|