public static class RecursiveFilter.Processor extends Object implements InlineDataProcessor
Modifier and Type | Field and Description |
---|---|
protected double[] |
a
The prediction coefficiednts, as in *
x[n] = e[n] + a[1]*x[n-1] + a[2]*x[n-2] + ... |
protected double[] |
memory
A memory of
x[n-1]...x[n-p] , when reading data in chunks. |
protected int |
p
The prediction order, i.e.
|
Constructor and Description |
---|
RecursiveFilter.Processor(double[] a) |
protected final double[] a
x[n] = e[n] + a[1]*x[n-1] + a[2]*x[n-2] + ... + a[p]*x[n-p]
protected final int p
protected double[] memory
x[n-1]...x[n-p]
, when reading data in chunks.public void applyInline(double[] data, int off, int len)
applyInline
in interface InlineDataProcessor
data
- data to filter, e.g. a residualoff
- position in data to start processinglen
- number of sample points to processCopyright © 2000–2016 DFKI GmbH. All rights reserved.