www.gusucode.com > signal 工具箱matlab源码程序 > signal/@dfilt/@statespace/coefficient_info.m

    function [p, v] = coefficient_info(this)
%COEFFICIENT_INFO   Get the coefficient information for this filter.

%   Author(s): J. Schickler
%   Copyright 1988-2004 The MathWorks, Inc.

p = {getString(message('signal:dfilt:info:FilterLength'))};
v = {sprintf('%d', order(this)+1)};

% [EOF]