source: prdatasets/satellite_sl.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 1.0 KB
Line 
1%SATELLITE_SL Statlog (Landsat Satellite) Data Set
2%PRTools dataset import from UCI, 4435+2000 objects, 36 features, 6 classes
3%
4%  [TRAIN,TEST] = SATELLITE_SL
5%   TRAIN_TEST  = SATELLITE_SL
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/Statlog+(Landsat+Satellite)">related website</a>
10%for further information. Please make the appropriate references in
11%publications that make use of this dataset.
12%
13%This dataset is identical to the SATELLITE dataset.
14%
15%SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
16%PRTOOLS, DATASETS, SATELLITE
17
18% Copyright: R.P.W. Duin
19
20function [a,b] = satellite_sl
21
22[a,b] = pr_download_uci('Statlog+(Landsat+Satellite)',{'sat.trn','sat.tst'},[],[],[],[],[],' ');
23a = setname(a,'Statlog Satellite');
24b = setname(b,'Statlog Satellite');
25if nargout < 2, a = [a;b]; end
Note: See TracBrowser for help on using the repository browser.