summaryrefslogtreecommitdiff
path: root/report/pyp_clustering/acl09-short/code/cohnpred.m
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2010-12-22 08:58:07 -0600
committerChris Dyer <cdyer@cs.cmu.edu>2010-12-22 08:58:07 -0600
commitb5ca2bd7001a385594af8dc4b9206399c679f8c5 (patch)
tree332cb09a27f783760532e688e14bde21a128bb2b /report/pyp_clustering/acl09-short/code/cohnpred.m
parent86805dcb8aaaa716fdc73725ad41e411be53f6a6 (diff)
remove report
Diffstat (limited to 'report/pyp_clustering/acl09-short/code/cohnpred.m')
-rw-r--r--report/pyp_clustering/acl09-short/code/cohnpred.m12
1 files changed, 0 insertions, 12 deletions
diff --git a/report/pyp_clustering/acl09-short/code/cohnpred.m b/report/pyp_clustering/acl09-short/code/cohnpred.m
deleted file mode 100644
index 35a49605..00000000
--- a/report/pyp_clustering/acl09-short/code/cohnpred.m
+++ /dev/null
@@ -1,12 +0,0 @@
-function output = cohnpred(input,b)
-
-uniqin = unique(input);
-prediction = zeros(max(input),1);
-
-p0=1/30114;
-for i = 1:length(uniqin)
- prediction(uniqin(i)) = b*p0*(psi(b*p0+uniqin(i)) - psi(b*p0));
-end
-
-output = prediction(input);
-