R/get.cov.r

Defines functions get.cov

Documented in get.cov

#############################################
#   This code is subject to the license as stated in DESCRIPTION.
#   Using this software implies accceptance of the license terms:
#    - GPL 2
#
#   (C) by F. Hoffgaard, P. Weil, and K. Hamacher in 2009.
#
#  keul(AT)bio.tu-darmstadt.de
#
#
#  http://www.kay-hamacher.de
#############################################



get.cov<-function(cm,im,deltas){
	n<-dim(cm)[1]
	hessian.mat<-build.hess(cm,im,deltas)
	out<-get.svd(hessian.mat)
	covelation.mat<-build.invhess(out)
	return(covelation.mat)
	}

Try the BioPhysConnectoR package in your browser

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

BioPhysConnectoR documentation built on May 30, 2017, 6:46 a.m.