RMSE | Invalid Characters
Mostra commenti meno recenti
Hi
I am not sure, why it tell me the below has invalid characters.
function r = rmse(data,k)
r = sqrt(sum((data(:)-k(:)).^2)/numel(data))
end
1 Commento
KSSV
il 7 Mag 2018
What input you tried?
Risposta accettata
Più risposte (1)
Yuvaraj Venkataswamy
il 7 Mag 2018
Modificato: Walter Roberson
il 7 Mag 2018
function r = RMSE(data,k)
Error=(data-k);
Squared_Error=Error.^2 ;
MSE=mean(Squared_Error);
r = sqrt(MSE);
end
Categorie
Scopri di più su Linear Algebra in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!