summaryrefslogtreecommitdiff
path: root/report/pyp_clustering/acl09-short/code/noP0pred.m
diff options
context:
space:
mode:
Diffstat (limited to 'report/pyp_clustering/acl09-short/code/noP0pred.m')
-rw-r--r--report/pyp_clustering/acl09-short/code/noP0pred.m11
1 files changed, 0 insertions, 11 deletions
diff --git a/report/pyp_clustering/acl09-short/code/noP0pred.m b/report/pyp_clustering/acl09-short/code/noP0pred.m
deleted file mode 100644
index f72f1432..00000000
--- a/report/pyp_clustering/acl09-short/code/noP0pred.m
+++ /dev/null
@@ -1,11 +0,0 @@
-function output = antoniakpred(input,b)
-
-uniqin = unique(input);
-prediction = zeros(max(input),1);
-
-for i = 1:length(uniqin)
- prediction(uniqin(i)) = b*log((b+uniqin(i))/b);
-end
-
-output = prediction(input);
-