RLPark 1.0.0
Reinforcement Learning Framework in Java

Normalizer.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.math.normalization;
00002 
00003 import java.io.Serializable;
00004 
00005 public interface Normalizer extends Serializable {
00006   void update(double newValue);
00007 
00008   double normalize(double value);
00009 
00010   Normalizer newInstance();
00011 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark