1 | %MFEAT_ALL Load all MFEAT datasets in a cell array |
---|
2 | % |
---|
3 | % A = MFEAT |
---|
4 | % |
---|
5 | % This command loads all MFEAT datasets in the following order: |
---|
6 | % |
---|
7 | % MFEAT_FAC, MFEAT_FOU, MFEAT_KAR, MFEAT_MOR, MFEAT_PIX, MFEAT_ZER. |
---|
8 | % |
---|
9 | % A = returned as a cell array of datasets. |
---|
10 | % |
---|
11 | % REFERENCES |
---|
12 | % [1] A.K. Jain, R.P.W. Duin, and J. Mao, Statistical Pattern Recognition: |
---|
13 | % A Review, IEEE Transactions on Pattern Analysis and Machine Intelligence, |
---|
14 | % vol. 22, no. 1, 2000, 4-37. |
---|
15 | % [2] R.P.W. Duin and D.M.J. Tax, Experiments with Classifier Combining |
---|
16 | % Rules, in: J. Kittler, F. Roli (eds.), Multiple Classifier Systems , |
---|
17 | % LNCS, vol. 1857, Springer, Berlin, 2000, 16-29. |
---|
18 | % |
---|
19 | % See also DATASETS, PRDATASETS, |
---|
20 | |
---|
21 | % Copyright: R.P.W. Duin |
---|
22 | % Faculty EWI, Delft University of Technology |
---|
23 | % P.O. Box 5031, 2600 GA Delft, The Netherlands |
---|
24 | |
---|
25 | function a = mfeat_all |
---|
26 | |
---|
27 | a = cell(1,6); |
---|
28 | a{1} = mfeat_fac; |
---|
29 | a{2} = mfeat_fou; |
---|
30 | a{3} = mfeat_kar; |
---|
31 | a{4} = mfeat_mor; |
---|
32 | a{5} = mfeat_pix; |
---|
33 | a{6} = mfeat_zer; |
---|