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

    %% Clone Default Lowpass filter
% Create a |dsp.LowpassFilter| System object with default properties.
% Use the |clone| method to generate a lowpass filter with the same 
% properties as the original filter.

% Copyright 2015 The MathWorks, Inc.


%%

LPF = dsp.LowpassFilter
LPFClone = clone(LPF)