Skip to content

dead_zone

nickgillian edited this page Aug 21, 2016 · 2 revisions

#Dead Zone

##Description The DeadZone class sets any values in the input signal that fall within the dead-zone region to zero. Any values outside of the dead-zone region will be offset by the dead zone's lower limit and upper limit. The DeadZone class is part of the Preprocessing Modules.

DeadZone An example of using the DeadZone to remove the noise centered around the range [-0.15 0.15] from the input signal. The red signal in the image is the original input signal to the DeadZone, and the green signal is the output of the DeadZone. Note that the values outside of the dead-zone range are offset by the lower and upper limits of the DeadZone.

##Applications The DeadZone class is a good preprocessing module to use if you want a quick way of removing a small amount of noise from a signal if that noise lies within a specific region (i.e. between the range of [-0.1 0.1]).

##Example Dead Zone Example