Represents a function computing the square root of another function. More...
Public Member Functions | |
| SqrtMathFunction (MathFunction func) | |
| Computes and returns the square root of the function func. | |
| MathFunction | getFunction () |
| Returns the function associated with this object. | |
| double | evaluate (double x) |
| Returns the value of the function evaluated at \(x\). | |
Represents a function computing the square root of another function.
\(f(x)\).
<div class="SSJ-bigskip"></div>
Definition at line 34 of file SqrtMathFunction.java.
| umontreal.ssj.functions.SqrtMathFunction.SqrtMathFunction | ( | MathFunction | func | ) |
Computes and returns the square root of the function func.
| func | the function to compute square root for. |
Definition at line 42 of file SqrtMathFunction.java.
| double umontreal.ssj.functions.SqrtMathFunction.evaluate | ( | double | x | ) |
Returns the value of the function evaluated at \(x\).
| x | value at which the function is evaluated |
Implements umontreal.ssj.functions.MathFunction.
Definition at line 58 of file SqrtMathFunction.java.
| MathFunction umontreal.ssj.functions.SqrtMathFunction.getFunction | ( | ) |
Returns the function associated with this object.
Definition at line 54 of file SqrtMathFunction.java.