📄 mse.m
字号:
function perf=mse(e)%% calculate the mean squared error of the given errors% % 'perf = mse(E);'%% see also:% mae, linf, trimmedmse%% Copyright (c) 2002, KULeuven-ESAT-SCD, License & help @ http://www.esat.kuleuven.ac.be/sista/lssvmlabperf = sum(sum(e.^2)) / prod(size(e));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -