diff options
Diffstat (limited to 'sourcecodes/bnt-master/SLP/examples/UCI_DataSets/thyroidL.m')
| -rw-r--r-- | sourcecodes/bnt-master/SLP/examples/UCI_DataSets/thyroidL.m | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sourcecodes/bnt-master/SLP/examples/UCI_DataSets/thyroidL.m b/sourcecodes/bnt-master/SLP/examples/UCI_DataSets/thyroidL.m new file mode 100644 index 00000000..8c78cc70 --- /dev/null +++ b/sourcecodes/bnt-master/SLP/examples/UCI_DataSets/thyroidL.m @@ -0,0 +1,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 |
