powered by
The formula for RMSD is:
$$RMSD = \sqrt{\frac{\sum_{i = 1}^n(\hat \theta - \theta)^2}{n}}$$
rmsd(est, true)
A number representing RMSD.
A numeric vector of estimated values
A numeric vector of true values
Emre Gonulates
true <- rnorm(10) est <- true + runif(10)
Run the code above in your browser using DataLab