diff options
Diffstat (limited to 'sourcecodes/bnt-master/SLP/examples/UCI_DataSets/taeD.m')
| -rw-r--r-- | sourcecodes/bnt-master/SLP/examples/UCI_DataSets/taeD.m | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sourcecodes/bnt-master/SLP/examples/UCI_DataSets/taeD.m b/sourcecodes/bnt-master/SLP/examples/UCI_DataSets/taeD.m new file mode 100644 index 00000000..63cde564 --- /dev/null +++ b/sourcecodes/bnt-master/SLP/examples/UCI_DataSets/taeD.m @@ -0,0 +1,26 @@ +load -ascii tae + +[N, m] = size(tae) + +class = 6 + +%rand('state',0); randn('state',0); +%tae = tae(:,randperm(m)); + +Napp = 100 +Ntest = m-Napp + +app = tae(:,1:Napp);size(app) +test = tae(:,Napp+1:151);size(test) + +%unique(app(class,:)) +%unique(test(class,:)) + +%app=tae; +%test=tae; +%disp('test en apprentissage'); + +ns = max(tae') +clear tae + +% N, ns(class), Napp, Ntest, mean(ns), |
