Package ptolemy.math
Interface DoubleUnaryOperation
-
- All Known Implementing Classes:
SignalProcessing.GaussianSampleGenerator,SignalProcessing.PolynomialSampleGenerator,SignalProcessing.RaisedCosineSampleGenerator,SignalProcessing.SawtoothSampleGenerator,SignalProcessing.SincSampleGenerator,SignalProcessing.SinusoidSampleGenerator,SignalProcessing.SqrtRaisedCosineSampleGenerator,TestDoubleUnaryOperation
public interface DoubleUnaryOperationA operation taking one argument of type double, and producing a value of type double. This interface attempts to mimic a first-class function of a single variable.- Since:
- Ptolemy II 1.0
- Version:
- $Id$
- Author:
- Jeff Tsay
- Pt.AcceptedRating:
- Red (ctsay)
- Pt.ProposedRating:
- Red (ctsay)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubleoperate(double operand)Operate on the operand, returning a value of the same type.
-