source: prdatasets/isolet.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 1.0 KB
Line 
1%ISOLET Spoken letter names
2%PRTools dataset import from UCI, 6238+1559 objects, 617 categorical features, 26 classes
3%
4%  [TRAIN,TEST] = ISOLET
5%   TRAIN_TEST  = ISOLET
6%
7%DESCRIPTION
8%This command downloads one of the UCI data sets, converts it into PRTools
9%format and stores it locally for future use. Consult the <a href="http://archive.ics.uci.edu/ml/datasets/ISOLET">related website</a>
10%for further information. Please make the appropriate references in
11%publications that make use of this dataset.
12%
13%SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
14
15function [a,b] = isolet
16
17% UCI data is Z-compressed. No Matlab command found for uncompressing.
18% Load zipped data from prtools website.
19url1 = 'http://prtools.tudelft.nl/prdatasets/isolet1+2+3+4.zip';
20url2 = 'http://prtools.tudelft.nl/prdatasets/isolet5.zip';
21[a,b] = pr_download_uci('ISOLET',{url1,url2});
22a = setname(a,'Isolet');
23b = setname(b,'Isolet');
24if nargout < 2, a = [a;b]; end
25
Note: See TracBrowser for help on using the repository browser.