| /* |
| * Mathlib : A C Library of Special Functions |
| * Copyright (C) 1998 Ross Ihaka |
| * Copyright (C) 2000-2015 The R Core Team |
| * Copyright (C) 2005 The R Foundation |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License as published by |
| * the Free Software Foundation; either version 2 of the License, or |
| * (at your option) any later version. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with this program; if not, a copy is available at |
| * https://www.R-project.org/Licenses/ |
| * |
| * DESCRIPTION |
| * |
| * The quantile function of the F distribution. |
| */ |
| |
| #include "nmath.h" |
| #include "dpq.h" |
| |
| double qf(double p, double df1, double df2, int lower_tail, int log_p) |
| { |
| #ifdef IEEE_754 |
| if (ISNAN(p) || ISNAN(df1) || ISNAN(df2)) |
| return p + df1 + df2; |
| #endif |
| if (df1 <= 0. || df2 <= 0.) ML_ERR_return_NAN; |
| |
| R_Q_P01_boundaries(p, 0, ML_POSINF); |
| |
| /* fudge the extreme DF cases -- qbeta doesn't do this well. |
| But we still need to fudge the infinite ones. |
| */ |
| |
| if (df1 <= df2 && df2 > 4e5) { |
| if(!R_FINITE(df1)) /* df1 == df2 == Inf : */ |
| return 1.; |
| /* else */ |
| return qchisq(p, df1, lower_tail, log_p) / df1; |
| } |
| if (df1 > 4e5) { /* and so df2 < df1 */ |
| return df2 / qchisq(p, df2, !lower_tail, log_p); |
| } |
| |
| // FIXME: (1/qb - 1) = (1 - qb)/qb; if we know qb ~= 1, should use other tail |
| p = (1. / qbeta(p, df2/2, df1/2, !lower_tail, log_p) - 1.) * (df2 / df1); |
| return ML_VALID(p) ? p : ML_NAN; |
| } |