Interface VectorNormalizer
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ExpNormalizer,NoopNormalizer,Normalizer
A functional interface that generates a normalized version of a double array.
-
Method Summary
Modifier and TypeMethodDescriptiondouble[]normalize(double[] input) Normalizes the input array in some fashion specified by the class.
-
Method Details
-
normalize
Normalizes the input array in some fashion specified by the class.- Parameters:
input- The input to normalize.- Returns:
- The normalized array.
-