| Constructor and Description |
|---|
ZTransformer() |
| Modifier and Type | Method and Description |
|---|---|
void |
fit(double[] input)
The function only fits a single instance of the dataset
|
void |
fit(double[][] input) |
void |
fit(TimeSeriesDataset input)
the function computes the needed information for the transform function.
|
double[] |
fitTransform(double[] input)
the function fit and transforms a single instance
|
double[][] |
fitTransform(double[][] input) |
TimeSeriesDataset |
fitTransform(TimeSeriesDataset input)
a utility function to avoid the added effort of calling the fit and transform
function separate
|
void |
setBasselCorrected(boolean basselCorrected) |
double[] |
transform(double[] input)
This function transforms only a single instance.
|
double[][] |
transform(double[][] input) |
TimeSeriesDataset |
transform(TimeSeriesDataset input)
represents a function working on a dataset by transforming the dataset itself.
|
public void setBasselCorrected(boolean basselCorrected)
public TimeSeriesDataset transform(TimeSeriesDataset input)
IFilterinput - the data set that is to transformpublic void fit(TimeSeriesDataset input)
IFilterinput - the dataset that is to transformpublic TimeSeriesDataset fitTransform(TimeSeriesDataset input)
IFilterfitTransform in interface IFilterfitTransform in class AFilterinput - the dataset that is to be transfromedpublic double[] transform(double[] input)
IFilterinput - the to transform instancepublic void fit(double[] input)
IFilterinput - The to fit instancepublic double[] fitTransform(double[] input)
IFilterinput - the to fit and transform instancepublic double[][] transform(double[][] input)
public void fit(double[][] input)
public double[][] fitTransform(double[][] input)