log_slope_luk: Estimates the slope of subsequential measurements

Usage Arguments Examples

Usage

1

Arguments

a
b

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (a, b) 
{
    return(tryCatch(log(abs(b)) - log(abs(a)), error = function(e) {
        print(paste0("Tried slope with: ", a, " ", b))
        return("log slope error")
    }))
  }

lkshrsch/gLVInterNetworks documentation built on May 21, 2019, 7:33 a.m.