| decomp.cov | R Documentation | 
Calculates a decomposition of the provided covariance matrix, V, using the chosen method.  
	decomp.cov(V, method = "eigen")
| V | A (symmetric, positive-definite) covariance matrix. | 
| method | A character vector specifying the method used to decompose  | 
 The matrix V is assumed to be symmetric and positive definite.  Symmetry is checked, but the positive definiteness of the matrix is not.  Returns a decomposition matrix U such that V = U %*% t(U).
Returns a decomposition matrix U such that V = U %*% t(U). 
Joshua French
cov.sp
	data(toydata)
	U <- decomp.cov(toydata$V, method = "chol")
	#range(toydata$V - U %*% t(U))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.