robust.inverse {ergm}R Documentation

Find the inverse of a matrix

Description

The robust.inverse function attempts to return the inverse of a matrix H by either direct means (via R's solve) or via computation from the singular decomposition of H

Usage

robust.inverse(H, tol = sqrt(.Machine$double.eps))

Arguments

H

a matrix, presumably a Hessian

tol

the tolerance, used for determining which of the singular values from the decompostion are postive; default=sqrt(.Machine$double.eps)

Value

returns one of:

See Also

svd, solve


[Package ergm version 3.4.0 Index]