www.gusucode.com > dsp 案例源码程序 matlab代码 > dsp/CloneDefaultIIRHalfbandDecimatorExample.m

    %% Clone Default IIR Halfband Decimator
% Create a |dsp.IIRHalfbandDecimator| System object with default properties.
% Use the |clone| method to generate an IIR halfband decimator with the same 
% properties as the original filter.

% Copyright 2015 The MathWorks, Inc.


%%

IIRHalfbandDecim = dsp.IIRHalfbandDecimator
C = clone(IIRHalfbandDecim)