R/projection.R

Defines functions projection

Documented in projection

projection <-
function(alpha, Sigma) 
{
	return(alpha%*%solve(t(alpha)%*%Sigma%*% alpha)%*%t(alpha)%*% Sigma)
}

Try the ldr package in your browser

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

ldr documentation built on May 2, 2019, 2:13 p.m.