summaryrefslogtreecommitdiffstats
path: root/supp/RMSE.m
diff options
context:
space:
mode:
Diffstat (limited to 'supp/RMSE.m')
-rw-r--r--supp/RMSE.m12
1 files changed, 6 insertions, 6 deletions
diff --git a/supp/RMSE.m b/supp/RMSE.m
index 734e4b8..002f776 100644
--- a/supp/RMSE.m
+++ b/supp/RMSE.m
@@ -1,7 +1,7 @@
-function err = RMSE(signal1, signal2)
-%RMSE Root Mean Squared Error
-
-err = sum((signal1 - signal2).^2)/length(signal1); % MSE
-err = sqrt(err); % RMSE
-
+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