This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
NumericalAnalysisModule/4 - Simpson and Trapezoidal.../src/t4/Function.java

9 lines
143 B
Java
Executable File

package t4;
/*
* Function.java
* Defines an interface to be implemented by a function
*/
interface Function {
double function(double x);
}