Start
|
Index
|
Overview
•
PREV
|
UP
|
net.simplace.core.jexl.JexlUnitTransform
public class
JexlUnitTransform
{
// Public Constructors
public
JexlUnitTransform
();
// Class Methods
public static Object
linear
(Number a, Number b, Number x);
To be used in Jexl engine like transform:linear(double a, double b, double x) like y = a * x + b
a
b
x
returns
a Calculated Value
public static Object
mean
(Number a, Number b);
To be used in Jexl engine like transform:mean(double a, double b) like y = (a + b)/2
a
b
returns
a Calculated Value
}