powered by
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)
CorrIndex, which means the closeness between S and S_true , is returned.
Cross-correlation matrix
S_true <- matrix(runif(5*5), nrow=5, ncol=5) S <- matrix(runif(5*5), nrow=5, ncol=5) CorrIndex(cor(S_true, S))
Run the code above in your browser using DataLab