-
Notifications
You must be signed in to change notification settings - Fork 0
/
numinteg_helper-funcs.r
68 lines (54 loc) · 2.09 KB
/
numinteg_helper-funcs.r
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
# numerical integration
# helper functions
#########################################################################
# helper function to convert a brob list to a brob vector
#
list2vec.brob <- function(list.brob, check.list=FALSE)
{
if(!is.list(list.brob)) stop("Input is not a list.")
if(check.list)
{
if(any(unlist(lapply(list.brob, function(x) attr(x, "class"))) != "brob"))
{
stop("There are non-brob elements in the list. Stopping.")
}
}
vec.brob <- brob(unlist(lapply(list.brob,getX)),unlist(lapply(list.brob,getP)))
return(vec.brob)
}
#########################################################################
#########################################################################
# helper function to replace '%*%' scalarproduct that does not work for brob objects
#
scalarprod.brob <- function(c1,c2)
{
#check required?
#if( any(c(attr(c1,"class"),attr(c2, "class")) != "brob") ) stop("Elements not of class 'brob'. Stopping.")
return( sum(c1*c2) )
}
#########################################################################
################################################################################
# subtract two log values log(x-y)
.llog2sub.short <- function(la,lb, log2=log(2))
{
ifelse(lb - la < log2, return( la + log1p(-exp(lb - la)) ), return( la + log(-expm1(lb - la)) ) )
}
################################################################################
################################################################################
# subtract log values
.llog.2sub.short.alt <- function(v)
{
return( max(v) + log1p(-exp(-abs(v[1]-v[2]))) )
}
################################################################################
################################################################################
# add two values/ vector on the log scale
.llog.2add.short <- function(v, log1p.crit=1e-09) #1e-15
{
max.v <- max(v)
sum.v <- sum(exp(v - max.v))
ifelse(sum.v < log1p.crit,
return( max.v + log1p(sum.v) ),
return( max.v + log(sum.v) )
)}
################################################################################