| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Filter Design Toolbox |
| Contents | Index |
| Learn more about Filter Design Toolbox |
reset(ha)
reset(hd)
reset(hm)
reset(ha) resets all the properties of the adaptive filter ha that are updated when filtering to the value specified at construction. If you do not specify a value for any particular property when you construct an adaptive filter, the property value for that property is reset to the default value for the property.
reset(hd) resets all the properties of the discrete-time filter hd to their factory values that are modified when you run the filter. In particular, the States property is reset to zero.
reset(hm) resets all the properties of the multirate filter hm to their factory value that are modified when the filter is run. In particular, the States property is reset to zero when hm is a decimator. Additionally, the filter internal properties are also reset to their factory values.
Denoise a sinusoid and reset the filter after filtering with it.
h = adaptfilt.lms(5,.05,1,[0.5,0.5,0.5,0.5,0.5]); n = filter(1,[1 1/2 1/3],.2*randn(1,2000)); d = sin((0:1999)*2*pi*0.005) + n; % Noisy sinusoid x = n; [y,e]= filter(h,x,d); % e has denoised signal disp(h) reset(h); % Reset the coefficients and states. disp(h)
quantizer, set
![]() | reorder | scale | ![]() |

Learn how to apply early verification to your development process through these technical resources.
How much time do you spend on testing to ensure implementation meets system-level requirements?
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |