Use the 'standard' arcsine transform

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5619 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
chartl 2011-04-12 23:11:45 +00:00
parent 8125b8b901
commit 36d8f55286
1 changed files with 2 additions and 2 deletions

View File

@ -31,10 +31,10 @@ public class AssociationTestRunner {
}
};
final static Dichotomizer1D.Transform ARCSINE_TRANSFORM = (new Dichotomizer1D()).new Transform() {
final static Dichotomizer1D.Transform STD_ASIN = (new Dichotomizer1D()).new Transform() {
@Override
public double transform(double d) {
return Math.asin(1.0-d);
return Math.asin(Math.sqrt(d));
}
};