#' Covariance Matrix from Correlation Matrix
#'
#' @author Ivan Jacob Agaloos Pesigan
#'
#' @param x Numeric matrix.
#' Correlation matrix.
#' @param sd Numeric vector.
#' Vector of standard deviations.
#' @family Correlation Functions
#' @keywords rhoMatrix correlation dot
#' @noRd
.sigmacap_of_rhocap <- function(x,
sd) {
sd * x * rep(
x = sd,
each = dim(x)[1]
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.