Portfolio Code | Clement Colmerauer
Repositories
Site
Rabbit simulation
Code
Commits
Branches
Tags
Search
Tree:
a20104a
Branches
Tags
master
Rabbit simulation
build
colt
src
hep
aida
bin
BinFunction1D.java
initial commit
Clement COLMERAUER
commited
a20104a
at 2024-09-09 10:17:52
BinFunction1D.java
Blame
History
Raw
package hep.aida.bin; /** * Interface that represents a function object: a function that takes * two bins as arguments and returns a single value. */ public interface BinFunction1D { /** * Applies a function to one bin argument. * * @param x the argument passed to the function. * @return the result of the function. */ abstract public double apply(DynamicBin1D x); /** * Returns the name of this function. * * @return the name of this function. */ abstract public String name(); }