Class TransformerMixin<InputType,​OutputType>

    • Constructor Detail

      • TransformerMixin

        public TransformerMixin()
    • Method Detail

      • transform

        public abstract OutputType transform​(InputType array)
        Takes the input array and transforms it.
        Parameters:
        array - The array to transform.
        Returns:
        The transformed array.
      • inverseTransform

        public abstract InputType inverseTransform​(OutputType array)
        Takes a transformed array and reveres the transformation.
        Parameters:
        array - The array to apply reveres transform.
        Returns:
        The inversed transform of array.