integr.control {smam}R Documentation

Auxiliary for Controlling Numerical Integration

Description

Auxiliary function for the numerical integration used in the likelihood and composite likelihood functions. Typically only used internally by 'fitMR' and 'fitMRH'.

Usage

integr.control(
  rel.tol = .Machine$double.eps^0.25,
  abs.tol = rel.tol,
  subdivisions = 100L
)

Arguments

rel.tol

relative accuracy requested.

abs.tol

absolute accuracy requested.

subdivisions

the maximum number of subintervals.

Details

The arguments are the same as integrate, but passed down to the C API of Rdqags used by integrate.

Value

A list with components named as the arguments.


[Package smam version 0.7.2 Index]