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
 *  Mathlib : A C Library of Special Functions
-
 
3
 *  Copyright (C) 1998 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
 *  DESCRIPTION
-
 
21
 *
-
 
22
 *	The density of the exponential distribution.
-
 
23
 */
-
 
24
 
-
 
25
#include "nmath.h"
-
 
26
#include "dpq.h"
-
 
27
 
-
 
28
double dexp(double x, double scale, int give_log)
-
 
29
{
-
 
30
#ifdef IEEE_754
-
 
31
    /* NaNs propagated correctly */
-
 
32
    if (ISNAN(x) || ISNAN(scale)) return x + scale;
-
 
33
#endif
-
 
34
    if (scale <= 0.0) ML_ERR_return_NAN;
-
 
35
 
-
 
36
    if (x < 0.)
-
 
37
	return R_D__0;
-
 
38
    return (give_log ?
-
 
39
	    (-x / scale) - log(scale) :
-
 
40
	    exp(-x / scale) / scale);
-
 
41
}