最小二乘支持向量基的工具箱,希望对大家有用!

源代码在线查看: mse.m

软件大小: 296 K
上传用户: wugu0
关键词: 向量 工具箱
下载地址: 免注册下载 普通下载 VIP

相关代码

				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/lssvmlab												perf = sum(sum(e.^2)) / prod(size(e));			

相关资源