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

    function n = numParams( m )
%NUMPARAMS   Number of parameters of an xreginterprbf object
%   NUMPARAMS(M) is the number of independent parameters in the 
%   xreginterprbf object M. This possibly differs from the number of 
%   coefficients because the coefficients of the rbf part must orthogonal 
%   to polynomials in the space that the polynomial part (linearmodpart) 
%   are chosen from.

%  Copyright 2000-2006 The MathWorks, Inc. and Ford Global Technologies, Inc.



n = numParams( get( m, 'rbfpart' ) );

% EOF