www.gusucode.com > mbc 工具箱 matlab 源码程序 > mbc/@mbcmodel/@responsefeatures/Jacobian.m

    function J = Jacobian(RF)
%JACOBIAN Jacobian matrix of response features with respect to parameters
%
% J = Jacobian(RF);
%   The local model must be fitted before calculating the Jacobian matrix.
% 
% See also mbcmodel.responsefeatures.Correlation,
% mbcmodel.responsefeatures.Covariance, mbcmodel.responsefeatures.Evaluate

% Copyright 2007 The MathWorks, Inc.

if RF.IsFitted
    J = delG(RF.Object);
else
    error(message('mbc:mbcmodel:responsefeatures:InvalidState3'))
end