how to find Nash, RMSE and R square of my model

2 次查看(过去 30 天)
i have created rainfall runoff model in simulink, now i need to calculate Nash, RMSE and R square for my model in simulink. what tool i have to use.

回答(1 个)

Manas Meena
Manas Meena 2021-5-11
You can either calculate the RMSE manually
y = <simulated data>
yhat = <experimental data>
RMSE = sqrt(mean((y - yhat).^2));
or you can refer to this RMSE function

类别

Help CenterFile Exchange 中查找有关 Simulink 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by