www.gusucode.com > mbcmodels 工具箱 matlab 源码程序 > mbcmodels/xregsplinerbf.m

    function m = xregsplinerbf(prop,nf)
%XREGSPLINERBF 
%
% m = xregsplinerbf('nfactors',nf);

%   Copyright 2006 The MathWorks, Inc.

if nargin==0
    prop = 'nfactors';
    nf = 1;
end

% make a linear model
fLin = @xreg3xspline;
m = xreghybridrbf(prop,nf,fLin);