1 package org.catacomb.numeric.function; 2 3 4 public interface ScalarFunction { 5 6 public double getScalar(double x); 7 8 }