summaryrefslogtreecommitdiffstats
path: root/supp/RMSE.m
diff options
context:
space:
mode:
Diffstat (limited to 'supp/RMSE.m')
-rw-r--r--supp/RMSE.m7
1 files changed, 0 insertions, 7 deletions
diff --git a/supp/RMSE.m b/supp/RMSE.m
deleted file mode 100644
index 002f776..0000000
--- a/supp/RMSE.m
+++ /dev/null
@@ -1,7 +0,0 @@
-function err = RMSE(signal1, signal2)
-%RMSE Root Mean Squared Error
-
-err = sum((signal1 - signal2).^2)/length(signal1); % MSE
-err = sqrt(err); % RMSE
-
-end \ No newline at end of file