ph.mean: Mean of PH distribution

View source: R/model_ph.R

ph.meanR Documentation

Mean of PH distribution

Description

Compute the mean of a given PH distribution.

Usage

ph.mean(ph, ...)

Arguments

ph

An instance of PH distribution

...

Others

Value

A value of mean

Examples

## create a PH with specific parameters
(param1 <- ph(alpha=c(1,0,0), 
              Q=rbind(c(-4,2,0),c(2,-5,1),c(1,0,-1)), 
              xi=c(2,2,0)))

## create a CF1 with specific parameters
(param2 <- cf1(alpha=c(1,0,0), rate=c(1.0,2.0,3.0)))

## create a hyper Erlang with specific parameters
(param3 <- herlang(shape=c(2,3), mixrate=c(0.3,0.7), rate=c(1.0,10.0)))

## mean
ph.mean(param1)
ph.mean(param2)
ph.mean(param3)


mapfit documentation built on Nov. 22, 2022, 5:05 p.m.