一个关于adaboost算法的matlab程序

源代码在线查看: clustknb_new_w.m

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

相关代码

				function [C,R]=clustknb_new_w(XData, k, Weights, disp, mus) 				%[C,R,real_k,it]=clustknb_new(XData, k, Weights, mus=random_data_subset)				%				% 'online version' of the k-means-nearest-neighbourhood algorithm				% 				% [C,R,real_k,it]=clustknb_new(XData, k, Weights)				%				% Input				%		XData		: Input data 				%		k		: number of centres				%               Weights         : Sample Weights				%		mus		: [opt] initialization of the centers				%				% Output				%		C : Matrix with bf-centres (Indim-by-m: [c_1 c_2 ... c_m]) 				%		R : bf-width								%   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 clustknb_new_w.c') ;							

相关资源