1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
#include <gnumeric-config.h>
#include "gnumeric.h"
#include <mathfunc.h>
#include "extra.h"
#define ML_ERR_return_NAN { return gnm_nan; }
/* ------------------------------------------------------------------------- */
/* --- BEGIN MAGIC R SOURCE MARKER --- */
#define R_Q_P01_check(p) \
if ((log_p && p > 0) || \
(!log_p && (p < 0 || p > 1)) ) \
ML_ERR_return_NAN
/* ------------------------------------------------------------------------ */
/* --- END MAGIC R SOURCE MARKER --- */
gnm_float
qcauchy (gnm_float p, gnm_float location, gnm_float scale,
gboolean lower_tail, gboolean log_p)
{
if (gnm_isnan(p) || gnm_isnan(location) || gnm_isnan(scale))
return p + location + scale;
R_Q_P01_check(p);
if (scale < 0 || !gnm_finite(scale)) ML_ERR_return_NAN;
if (log_p) {
if (p > -1)
/* The "0" here is important for the p=0 case: */
lower_tail = !lower_tail, p = 0 - gnm_expm1 (p);
else
p = gnm_exp (p);
}
if (lower_tail) scale = -scale;
return location + scale / gnm_tan(M_PIgnum * p);
}
/* ------------------------------------------------------------------------- */
/* This implementation of Owen's T function is based on code licensed under GPL v.2: */
/* GNU General Public License Agreement */
/* Copyright (C) 2004-2007 CodeCogs, Zyba Ltd, Broadwood, Holford, TA5 1DU, England. */
/* 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 CodeCogs. */
/* You must retain a copy of this licence in all copies. */
/* 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. */
/* --------------------------------------------------------------------------------- */
/* ! Evaluates the Owen's T function. */
#define LIM1 1E-35
#define LIM2 15.0
#define LIM3 15.0
#define LIM4 1E-5
#define TWOPI_INVERSE 1/(2*M_PIgnum)
static gnm_float
gnm_owent (gnm_float h, gnm_float a)
{
gnm_float weight[10] = { GNM_const(0.0666713443086881375935688098933),
GNM_const(0.149451349150580593145776339658),
GNM_const(0.219086362515982043995534934228),
GNM_const(0.269266719309996355091226921569),
GNM_const(0.295524224714752870173892994651),
GNM_const(0.295524224714752870173892994651),
GNM_const(0.269266719309996355091226921569),
GNM_const(0.219086362515982043995534934228),
GNM_const(0.149451349150580593145776339658),
GNM_const(0.0666713443086881375935688098933)};
gnm_float xtab[10] = {GNM_const(0.026093471482828279922035987916),
GNM_const(0.134936633311015489267903311577),
GNM_const(0.320590431700975593765672634885),
GNM_const(0.566604605870752809200734056834),
GNM_const(0.85112566101836878911517399887),
GNM_const(1.148874338981631210884826001130),
GNM_const(1.433395394129247190799265943166),
GNM_const(1.679409568299024406234327365115),
GNM_const(1.865063366688984510732096688423),
GNM_const(1.973906528517171720077964012084)};
gnm_float hs, h2, as, rt;
int i;
if (fabs(h) < LIM1) return atan(a) * TWOPI_INVERSE;
if (fabs(h) > LIM2 || fabs(a) < LIM1) return 0.0;
hs = -0.5 * h * h;
h2 = a;
as = a * a;
if (log(1.0 + as) - hs * as >= LIM3)
{
gnm_float h1 = 0.5 * a;
as *= 0.25;
for (;;)
{
gnm_float rt = as + 1.0;
h2 = h1 + (hs * as + LIM3 - log(rt))
/ (2.0 * h1 * (1.0 / rt - hs));
as = h2 * h2;
if (fabs(h2 - h1) < LIM4) break;
h1 = h2;
}
}
rt = 0.0;
for (i = 0; i < 10; i++)
{
gnm_float x = 0.5 * h2 * xtab[i], tmp = 1.0 + x * x;
rt += weight[i] * gnm_exp (hs * tmp) / tmp;
}
return 0.5 * rt * h2 * TWOPI_INVERSE;
}
#undef LIM1
#undef LIM2
#undef LIM3
#undef LIM4
#undef TWOPI_INVERSE
/* ------------------------------------------------------------------------- */
/* The skew-normal distribution. */
gnm_float
dsnorm (gnm_float x, gnm_float shape, gnm_float location, gnm_float scale, gboolean give_log)
{
if (shape == 0.)
return dnorm (x, location, scale, give_log);
else if (give_log)
return gnm_log (2.) + dnorm (x, location, scale, TRUE) + pnorm (shape * x, shape * location, scale, TRUE, TRUE);
else
return 2 * dnorm (x, location, scale, FALSE) * pnorm (shape * x, location/shape, scale, TRUE, FALSE);
}
gnm_float
psnorm (gnm_float x, gnm_float shape, gnm_float location, gnm_float scale, gboolean lower_tail, gboolean log_p)
{
gnm_float result;
if (shape == 0.)
return pnorm (x, location, scale, lower_tail, log_p);
result = pnorm (x, location, scale, TRUE, FALSE) - 2 * gnm_owent ((x - location)/scale, shape);
if (!lower_tail)
result = 1. - result;
if (log_p)
return gnm_log (result);
else
return result;
}
gnm_float
qsnorm (gnm_float p, gnm_float shape, gnm_float location, gnm_float scale, gboolean lower_tail, gboolean log_p)
{
if (shape == 0.)
return qnorm (p, location, scale, lower_tail, log_p);
else if (log_p)
return 0.;
else
return 0;
}
/* ------------------------------------------------------------------------- */
/* The skew-t distribution. */
gnm_float
dst (gnm_float x, gnm_float n, gnm_float shape, gboolean give_log)
{
if (shape == 0.)
return dt (x, n, give_log);
else {
gnm_float pdf = dt (x, n, give_log);
gnm_float cdf = pt (shape * x * gnm_sqrt ((n + 1)/(x * x + n)),
n + 1, TRUE, give_log);
return ((give_log) ? (gnm_log (2.) + pdf + cdf) : (2. * pdf * cdf));
}
}
gnm_float
pst (gnm_float x, gnm_float n, gnm_float shape, gboolean lower_tail, gboolean log_p)
{
if (shape == 0.)
return pt (x, n, lower_tail, log_p);
else if (log_p)
return 0.;
else
return 0.;
}
gnm_float
qst (gnm_float p, gnm_float n, gnm_float shape, gboolean lower_tail, gboolean log_p)
{
if (shape == 0.)
return qt (p, n, lower_tail, log_p);
else if (log_p)
return 0.;
else
return 0.;
}
/* ------------------------------------------------------------------------- */
|