about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/SLP/examples/UCI_DataSets/heartD.m
blob: b74bd941af5ca6dcfc85d82b8cf5fd0d11e87578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
load -ascii heart

[N, m] = size(heart)

class = N

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

Napp = 150
Ntest = m-Napp

app  = heart(:,1:Napp);size(app)
test = heart(:,Napp+1:end);size(test)

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

ns = max(heart')
clear heart

% N, ns(class), Napp, Ntest, mean(ns),