CorrIndex | R Documentation |
Calculate the CorrIndex of the cross-correlation matrix of S_true and estimated S. The closer the value is to 0, the closer estimated S is to S_true.
CorrIndex(cross_correlation_matrix)
cross_correlation_matrix |
Cross-correlation matrix |
CorrIndex, which means the closeness between S and S_true , is returned.
S_true <- matrix(runif(5*5), nrow=5, ncol=5)
S <- matrix(runif(5*5), nrow=5, ncol=5)
CorrIndex(cor(S_true, S))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.