www.gusucode.com > signal 工具箱matlab源码程序 > signal/+fdesign/@abstracttype/fircls.m

    function varargout = fircls(this, varargin)
%FIRCLS   FIR filter design using the constrained least squares method
%   FIRCLS(D) FIR filter design using the constrained least squares method.

%   Copyright 2008 The MathWorks, Inc.

try
    [varargout{1:nargout}] = privdesigngateway(this, 'fircls', varargin{:});
catch ME
    throwAsCaller(ME);
end

% [EOF]