R/beta2.calc.R

beta2.calc <-
function(x, y, n, j, k, e1, e2)
{
	aa <- wmat2(x, y, n, j, k, e1, e2)
	W <- aa$w
	bb <- rvec2(x, y, n, j, k, e1, e2)
	R <- bb$r
	beta <- solve(W, R)
	list(B = beta)
}

Try the hcp package in your browser

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

hcp documentation built on May 2, 2019, 2:37 a.m.