Package org.arakhne.afc.math.stochastic
Interface MathInversableFunction
-
- All Superinterfaces:
MathFunction
- All Known Implementing Classes:
BernoulliStochasticLaw,CauchyStochasticLaw,ConstantStochasticLaw,ExponentialStochasticLaw,GaussianStochasticLaw,LinearStochasticLaw,LogisticStochasticLaw,LogNormalStochasticLaw,ParetoStochasticLaw,StochasticLaw,TriangularStochasticLaw,UniformStochasticLaw
public interface MathInversableFunction extends MathFunction
Define a mathematic inverse function.- Since:
- 13.0
- Version:
- 17.0 2020-01-04 14:41:41
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.core
- Maven Artifact Id:
- mathstochastic
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubleinverseF(double y)Replies the value of the inverse function.-
Methods inherited from interface org.arakhne.afc.math.stochastic.MathFunction
f, getRange
-
-
-
-
Method Detail
-
inverseF
@Pure double inverseF(double y) throws MathExceptionReplies the value of the inverse function.- Parameters:
y- the y.- Returns:
- the value of
f<sup>-1</sup>(y). - Throws:
MathException- in casef<sup>-1</sup>(y)could not be computed
-
-