Class ExponentialDecayFunction

java.lang.Object
org.apache.commons.math3.ml.neuralnet.sofm.util.ExponentialDecayFunction

public class ExponentialDecayFunction extends Object
Exponential decay function: a e-x / b, where x is the (integer) independent variable.
Class is immutable.
Since:
3.3
  • Constructor Details

  • Method Details

    • value

      public double value(long numCall)
      Computes a e-numCall / b.
      Parameters:
      numCall - Current step of the training task.
      Returns:
      the value of the function at numCall.