Serializable, Componentpublic class DSS.DSSInv extends Distorter
| Constructor | Description |
|---|---|
DSSInv() |
| Modifier and Type | Method | Description |
|---|---|---|
String |
getDescription() |
Get a description of this component
|
String |
getName() |
Get the name of this component
|
Distorter |
inverse() |
Get the inverse Distorter
|
Distorter |
invert() |
Get the forward distorter back
|
boolean |
isInverse(Transformer t) |
Is this the inverse of another distorter?
|
double[][] |
jacobian(double[] x) |
Get the local Jacobian for the distortion.
|
void |
transform(double[] x,
double[] y) |
Transform a point
|
applyBeforeScaling, getInputDimension, getOutputDimensionclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waittransform, transformpublic Distorter invert()
public String getName()
public String getDescription()
getDescription in interface ComponentgetDescription in class Distorterpublic Distorter inverse()
public boolean isInverse(Transformer t)
isInverse in class Transformerpublic void transform(double[] x,
double[] y)
transform in class Transformerx - The input vector.y - The output vector, it may be the same as the input
vector if the dimensionalities are the same. All
transformers are expected to work with aliased inputs and output.public double[][] jacobian(double[] x)
Distorter