R/joint_first_moments.r

Defines functions joint_mean_markov_jumps joint_mean_markov_rewards uniformization_mean

joint_mean_markov_jumps <- function(rate.eigen, regist.matrix, interval.len){
        out<-.Call( "joint_mean_markov_jumps", rate.eigen, regist.matrix, interval.len)
        return(out)
}

joint_mean_markov_rewards <- function(i,interval.len, rate.eigen){
	out<-.Call( "joint_mean_markov_rewards", i, interval.len, rate.eigen) 
	return(out)
} 


uniformization_mean <- function(B,interval.len, rate){
	out<-.Call( "uniformization_mean_R", interval.len, B, rate) 
	return(out)
} 

Try the cthmm package in your browser

Any scripts or data that you put into this service are public.

cthmm documentation built on May 2, 2019, 5:46 p.m.