The R Project SVN R

Rev

Rev 42302 | Rev 68947 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 42302 Rev 42303
Line -... Line 1...
-
 
1
/*
-
 
2
 *  R : A Computer Language for Statistical Data Analysis
-
 
3
 *  Copyright (C) 1995, 1996  Robert Gentleman and Ross Ihaka
-
 
4
 *  Copyright (C) 2000 The R Development Core Team
-
 
5
 *
-
 
6
 *  This program is free software; you can redistribute it and/or modify
-
 
7
 *  it under the terms of the GNU General Public License as published by
-
 
8
 *  the Free Software Foundation; either version 2 of the License, or
-
 
9
 *  (at your option) any later version.
-
 
10
 *
-
 
11
 *  This program is distributed in the hope that it will be useful,
-
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
-
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-
 
14
 *  GNU General Public License for more details.
-
 
15
 *
-
 
16
 *  You should have received a copy of the GNU General Public License
-
 
17
 *  along with this program; if not, a copy is available at
-
 
18
 *  http://www.r-project.org/Licenses/
-
 
19
 */
-
 
20
 
-
 
21
#include "nmath.h"
-
 
22
#include "dpq.h"
-
 
23
 
-
 
24
double dlogis(double x, double location, double scale, int give_log)
-
 
25
{
-
 
26
    double e, f;
-
 
27
#ifdef IEEE_754
-
 
28
    if (ISNAN(x) || ISNAN(location) || ISNAN(scale))
-
 
29
	return x + location + scale;
-
 
30
#endif
-
 
31
    if (scale <= 0.0)
-
 
32
	ML_ERR_return_NAN;
-
 
33
 
-
 
34
    x = fabs((x - location) / scale);
-
 
35
    e = exp(-x);
-
 
36
    f = 1.0 + e;
-
 
37
    return give_log ? -(x + log(scale * f * f)) : e / (scale * f * f);
-
 
38
}