about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/SLP/examples/UCI_DataSets/thyroidL.m
blob: 8c78cc705129e7340d703c1da243c52f7241d2b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
load thyroid_app
load thyroid_test
thyroid_test=thyroid_test';

[N, Napp] = size(thyroid_app);
[N, Ntest] = size(thyroid_test);

N, m=Napp+Ntest, Napp, Ntest, 
class = 1

%rand('state',0); randn('state',0);
%abalone = abalone(:,randperm(m));

app  = thyroid_app;
test = thyroid_test;

unique(app(class,:))
unique(test(class,:))

ns = max(thyroid_app')
clear thyroid_app thyroid_test