public interface FX
Modifier and Type | Field and Description |
---|---|
static FX |
ONE
The function f(x) = 1
|
static FX |
X
The function f(x) = x
|
static FX |
XX
The function f(x) = x 2
|
static FX |
XXX
The function f(x) = x 3
|
static FX |
XXXX
The function f(x) = x 4
|
Modifier and Type | Method and Description |
---|---|
double |
f(double x)
The function y = f(x)
|
String |
getCCodeExpr()
Returns the function as C code expression, e.g.
|
static final FX XXXX
static final FX XXX
static final FX XX
static final FX X
static final FX ONE
double f(double x)
x
- the x parameterString getCCodeExpr()
"pow(x, 3) * y"
Copyright © 2014–2017 European Space Agency (ESA). All rights reserved.