mse.m
来自「不错的SVM实现算法」· M 代码 · 共 14 行
M
14 行
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 + =
减小字号Ctrl + -
显示快捷键?