一个关于adaboost算法的matlab程序,对开始接触adaboost研究的人,有实用价值

源代码在线查看: design_rbf.m

软件大小: 7189 K
上传用户: rentianchou
关键词: adaboost matlab 算法 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				function [H, Inp] = design_rbf(X, C, R)
				% [H, Inp] = design_rbf(X, C, R)
				%
				% Gets the design matrix from the input data, centre positions
				% and radii factors.
				%
				% Input
				%       X       Input training data (n-by-p)
				%       C       List of centres (n-by-m)
				%       R       Scale factors: scalar, n-vector, or n-by-n matrix
				%
				% Output
				%       H       Design matrix (p-by-m)
				%       Inp     p-by-m Matrix of the Norms ... (only for R=nvector)
				
				%   G. Raetsch 1.6.98
				%   Copyright (c) 1998  GMD Berlin - All rights reserved
				%   THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of GMD FIRST Berlin
				%   The copyright notice above does not evidence any
				%   actual or intended publication of this work.
				%   Please see COPYRIGHT.txt for details.
				
				error('compile design_rbf.c') ;
				
							

相关资源