vec_math
Interface Function

All Known Subinterfaces:
Derivative, Differentiable, Inverse
All Known Implementing Classes:
Chebyshev, CubicSpline, ExpressionFunction, Harmonics, IdentFunction, JulianDate, Legendre, ModifiedJulianDate, Phasing.PhaseFunction, Polynom, PowerSpectrum.BartlettWindow, PowerSpectrum.SquareWindow, PowerSpectrum.WelchWindow, RecursivePolynom, RecursivePolynom.Constant, RecursivePolynom.Linear, SerialValue.DewarPressure, SesFits.Dispersion, SesFits.Wavelength, StepFunction, TruncatedJulianDate

public interface Function

The representation of a single-argument function. Given an input value of the independant variable, evaluate(double) returns the single value of the function.

See Also:
Multidimensional, Differentiable, Inverse, Derivative

Method Summary
 double evaluate(double t)
          Given the value of the independant variable, this method returns the value of the function as a primitive double.
 

Method Detail

evaluate

double evaluate(double t)
Given the value of the independant variable, this method returns the value of the function as a primitive double.