You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Phil Steitz (JIRA)" <ji...@apache.org> on 2010/03/13 21:32:27 UTC

[jira] Closed: (MATH-330) F-distribution: add density-function (through HasDensity-interface)

     [ https://issues.apache.org/jira/browse/MATH-330?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Phil Steitz closed MATH-330.
----------------------------

    Resolution: Duplicate

Superceded by MATH-332

> F-distribution: add density-function (through HasDensity<Double>-interface)
> ---------------------------------------------------------------------------
>
>                 Key: MATH-330
>                 URL: https://issues.apache.org/jira/browse/MATH-330
>             Project: Commons Math
>          Issue Type: Improvement
>            Reporter: Mikkel Meyer Andersen
>            Priority: Minor
>         Attachments: patchfile
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> I've added the density function for the F-distribution.
> Tested from R with:
> > df(1, 1, 1)
> [1] 0.1591549
> > df(1, 5, 2)
> [1] 0.3080008
> > df(1, 100, 1)
> [1] 0.2407659
> > df(1, 50, 200)
> [1] 1.777891
> The result with this new density-function:
> FDistributionImpl F1 = new FDistributionImpl(1, 1);
> FDistributionImpl F2 = new FDistributionImpl(5, 2);
> FDistributionImpl F3 = new FDistributionImpl(100, 1);
> FDistributionImpl F4 = new FDistributionImpl(50, 200);
> F1.density(1.0); // gives 0.1591549430918953
> F2.density(1.0); // gives 0.308000821694066
> F3.density(1.0); // gives 0.2407658969285279
> F4.density(1.0); // gives 1.7778909151036544
> Some numeric instability may occur because it's the log density that's calculated, and then the result is the exponential function applied to this result.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.