clustknb_new_w.m

来自「一个关于adaboost算法的matlab程序,对开始接触adaboost研究的」· M 代码 · 共 26 行

M
26
字号
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') ;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?