All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.expleague.ml.func.generic.Const Maven / Gradle / Ivy

package com.expleague.ml.func.generic;

/**
 * User: solar
 * Date: 10.06.15
 * Time: 23:40
 */
public class Const extends ElementaryFunc {
  final double value;

  public Const(double value) {
    this.value = value;
  }

  @Override
  public double value(double x) {
    return value;
  }

  @Override
  public ElementaryFunc gradient() {
    return new Const(0);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy