design_rbf.m
来自「非常难得的adaboost程序」· M 代码 · 共 25 行
M
25 行
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 + =
减小字号Ctrl + -
显示快捷键?