Interface VectorNormalizer

All Superinterfaces:
Serializable
All Known Implementing Classes:
ExpNormalizer, NoopNormalizer, Normalizer

public interface VectorNormalizer extends Serializable
A functional interface that generates a normalized version of a double array.
  • Method Summary

    Modifier and Type
    Method
    Description
    double[]
    normalize(double[] input)
    Normalizes the input array in some fashion specified by the class.
  • Method Details

    • normalize

      double[] normalize(double[] input)
      Normalizes the input array in some fashion specified by the class.
      Parameters:
      input - The input to normalize.
      Returns:
      The normalized array.