source: prdatasets/satellite.m

Last change on this file was 158, checked in by bduin, 3 years ago
File size: 644 bytes
Line 
1%SATELLITE Satellite dataset 6435 objects with 36 features in 6 classes
2%
3%       A = SATELLITE
4%
5% Load the dataset in A. This is the Satellite dataset from the UCI
6% Machine Learning Repository, //www.ics.uci.edu/~mlearn/MLRepository.html.
7% As the samples are taken from related neighborhoods, it is better to
8% avoid cross-validation. Use the first 4435 samples for training and the
9% remaining 2000 for testing.
10%
11% See also DATASETS, PRDATASETS, SOYBEAN1
12
13% Copyright: R.P.W. Duin
14% Faculty EWI, Delft University of Technology
15% P.O. Box 5031, 2600 GA Delft, The Netherlands
16
17function a = satellite
18
19a = pr_getdata;
20a = setname(a,'Satellite');
Note: See TracBrowser for help on using the repository browser.