Click or drag to resize

IDoubleToDoubleTransformation Interface

Transforms a double value to another double value.

Namespace: Altaxo.Data.Transformations
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface IDoubleToDoubleTransformation : IVariantToVariantTransformation, 
	IImmutable

The IDoubleToDoubleTransformation type exposes the following members.

Properties
 NameDescription
Public propertyBackTransformation Gets the corresponding back transformation, or null if no such back transformation exists (as for instance for the absolute value transformation).
(Inherited from IVariantToVariantTransformation)
Public propertyInputValueType Gets the type of the input value of the transformation.
(Inherited from IVariantToVariantTransformation)
Public propertyIsEditable Gets a value indicating whether this instance is editable, i.e. contains methods to make new instances of this class with other behaviour.
(Inherited from IVariantToVariantTransformation)
Public propertyOutputValueType Gets the type of the output value of the transformation.
(Inherited from IVariantToVariantTransformation)
Public propertyRepresentationAsFunction Gets the representation of this transformation as a function.
(Inherited from IVariantToVariantTransformation)
Public propertyRepresentationAsOperator Gets the representation of this transformation as an operator. If the operator representation is not applicable, null should be returned.
(Inherited from IVariantToVariantTransformation)
Top
Methods
 NameDescription
Public methodDerivative Evaluates the derivative of the transformed y value.
Public methodGetRepresentationAsFunction Gets the representation of this transformation as a function with the argument provided in the parameter arg.
(Inherited from IVariantToVariantTransformation)
Public methodTransform(AltaxoVariant) Transforms the specified value into another AltaxoVariant value.
(Inherited from IVariantToVariantTransformation)
Public methodTransform(Double) Transforms the specified y value.
Top
See Also