⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 design_rbf.m

📁 一个关于adaboost算法的matlab程序
💻 M
字号:
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') ;

⌨️ 快捷键说明

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