matlab 均方根误差
时间: 2023-09-09 12:09:54 浏览: 335
均方误差_matlab_
MATLAB 中计算均方根误差(Root Mean Square Error,RMSE)的函数是 `rmse`,其语法为:
```
RMSE = rmse(targets, outputs)
```
其中,`targets` 是目标值的向量或矩阵,`outputs` 是预测值的向量或矩阵,`RMSE` 是计算得到的均方根误差。
例如,如果有以下目标值和预测值:
```
targets = [1 2 3 4 5];
outputs = [1.2 2.1 2.8 3.7 4.6];
```
则可以使用以下代码计算均方根误差:
```
RMSE = rmse(targets, outputs)
```
计算结果为:
```
RMSE = 0.5657
```
阅读全文