public final class ComplexFunction extends FunctionSet<ComplexNumber>
| Modifier and Type | Class and Description |
|---|---|
static interface |
ComplexFunction.Binary |
static interface |
ComplexFunction.Consumer |
static interface |
ComplexFunction.Parameter |
static interface |
ComplexFunction.Predicate |
static interface |
ComplexFunction.Unary |
@Deprecated public static final ComplexFunction.Unary ABS
ComplexMath.ABS instead@Deprecated public static final ComplexFunction.Unary ACOS
ComplexMath.ACOS instead@Deprecated public static final ComplexFunction.Unary ACOSH
ComplexMath.ACOSH instead@Deprecated public static final ComplexFunction.Binary ADD
ComplexMath.ADD instead@Deprecated public static final ComplexFunction.Unary ASIN
ComplexMath.ASIN instead@Deprecated public static final ComplexFunction.Unary ASINH
ComplexMath.ASINH instead@Deprecated public static final ComplexFunction.Unary ATAN
ComplexMath.ATAN instead@Deprecated public static final ComplexFunction.Binary ATAN2
ComplexMath.ATAN2 instead@Deprecated public static final ComplexFunction.Unary ATANH
ComplexMath.ATANH instead@Deprecated public static final ComplexFunction.Unary CARDINALITY
ComplexMath.CARDINALITY instead@Deprecated public static final ComplexFunction.Unary CBRT
ComplexMath.CBRT instead@Deprecated public static final ComplexFunction.Unary CEIL
ComplexMath.CEIL instead@Deprecated public static final ComplexFunction.Unary CONJUGATE
ComplexMath.CONJUGATE instead@Deprecated public static final ComplexFunction.Unary COS
ComplexMath.COS instead@Deprecated public static final ComplexFunction.Unary COSH
ComplexMath.COSH instead@Deprecated public static final ComplexFunction.Binary DIVIDE
ComplexMath.DIVIDE instead@Deprecated public static final ComplexFunction.Unary EXP
ComplexMath.EXP instead@Deprecated public static final ComplexFunction.Unary EXPM1
ComplexMath.EXPM1 instead@Deprecated public static final ComplexFunction.Unary FLOOR
ComplexMath.FLOOR instead@Deprecated public static final ComplexFunction.Binary HYPOT
ComplexMath.HYPOT instead@Deprecated public static final ComplexFunction.Unary INVERT
ComplexMath.INVERT instead@Deprecated public static final ComplexFunction.Unary LOG
ComplexMath.LOG instead@Deprecated public static final ComplexFunction.Unary LOG10
ComplexMath.LOG10 instead@Deprecated public static final ComplexFunction.Unary LOG1P
ComplexMath.LOG1P instead@Deprecated public static final ComplexFunction.Unary LOGISTIC
ComplexMath.LOGISTIC instead@Deprecated public static final ComplexFunction.Unary LOGIT
ComplexMath.LOGIT instead@Deprecated public static final ComplexFunction.Binary MAX
ComplexMath.MAX instead@Deprecated public static final ComplexFunction.Binary MIN
ComplexMath.MIN instead@Deprecated public static final ComplexFunction.Binary MULTIPLY
ComplexMath.MULTIPLY instead@Deprecated public static final ComplexFunction.Unary NEGATE
ComplexMath.NEGATE instead@Deprecated public static final ComplexFunction.Binary POW
ComplexMath.POW instead@Deprecated public static final ComplexFunction.Parameter POWER
ComplexMath.POWER instead@Deprecated public static final ComplexFunction.Unary RINT
ComplexMath.RINT instead@Deprecated public static final ComplexFunction.Parameter ROOT
ComplexMath.ROOT instead@Deprecated public static final ComplexFunction.Parameter SCALE
ComplexMath.SCALE instead@Deprecated public static final ComplexFunction.Unary SIGNUM
ComplexMath.SIGNUM instead@Deprecated public static final ComplexFunction.Unary SIN
ComplexMath.SIN instead@Deprecated public static final ComplexFunction.Unary SINH
ComplexMath.SINH instead@Deprecated public static final ComplexFunction.Unary SQRT
ComplexMath.SQRT instead@Deprecated public static final ComplexFunction.Unary SQRT1PX2
ComplexMath.SQRT1PX2 instead@Deprecated public static final ComplexFunction.Binary SUBTRACT
ComplexMath.SUBTRACT instead@Deprecated public static final ComplexFunction.Unary TAN
ComplexMath.TAN instead@Deprecated public static final ComplexFunction.Unary TANH
ComplexMath.TANH instead@Deprecated public static final ComplexFunction.Unary VALUE
ComplexMath.VALUE insteadpublic static ComplexFunction getSet()
public UnaryFunction<ComplexNumber> abs()
abs in class FunctionSet<ComplexNumber>Math.abs(double)public UnaryFunction<ComplexNumber> acos()
acos in class FunctionSet<ComplexNumber>Math.acos(double)public UnaryFunction<ComplexNumber> acosh()
acosh in class FunctionSet<ComplexNumber>public BinaryFunction<ComplexNumber> add()
FunctionSetadd in class FunctionSet<ComplexNumber>public AggregatorSet<ComplexNumber> aggregator()
aggregator in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> asin()
asin in class FunctionSet<ComplexNumber>Math.asin(double)public UnaryFunction<ComplexNumber> asinh()
asinh in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> atan()
atan in class FunctionSet<ComplexNumber>Math.atan(double)public BinaryFunction<ComplexNumber> atan2()
atan2 in class FunctionSet<ComplexNumber>Math.atan2(double,double)public UnaryFunction<ComplexNumber> atanh()
atanh in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> cardinality()
cardinality in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> cbrt()
cbrt in class FunctionSet<ComplexNumber>Math.cbrt(double)public UnaryFunction<ComplexNumber> ceil()
ceil in class FunctionSet<ComplexNumber>Math.ceil(double)public UnaryFunction<ComplexNumber> conjugate()
conjugate in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> cos()
cos in class FunctionSet<ComplexNumber>Math.cos(double)public UnaryFunction<ComplexNumber> cosh()
cosh in class FunctionSet<ComplexNumber>Math.cosh(double)public BinaryFunction<ComplexNumber> divide()
FunctionSetdivide in class FunctionSet<ComplexNumber>public ComplexFunction.Unary enforce(NumberContext context)
enforce in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> exp()
exp in class FunctionSet<ComplexNumber>Math.exp(double)public UnaryFunction<ComplexNumber> expm1()
expm1 in class FunctionSet<ComplexNumber>Math.expm1(double)public UnaryFunction<ComplexNumber> floor()
floor in class FunctionSet<ComplexNumber>Math.floor(double)public BinaryFunction<ComplexNumber> hypot()
hypot in class FunctionSet<ComplexNumber>Math.hypot(double, double)public UnaryFunction<ComplexNumber> invert()
invert in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> log()
log in class FunctionSet<ComplexNumber>Math.log(double)public UnaryFunction<ComplexNumber> log10()
log10 in class FunctionSet<ComplexNumber>Math.log10(double)public UnaryFunction<ComplexNumber> log1p()
log1p in class FunctionSet<ComplexNumber>Math.log1p(double)public UnaryFunction<ComplexNumber> logistic()
FunctionSetlogistic in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> logit()
logit in class FunctionSet<ComplexNumber>public BinaryFunction<ComplexNumber> max()
max in class FunctionSet<ComplexNumber>Math.max(double, double)public BinaryFunction<ComplexNumber> min()
min in class FunctionSet<ComplexNumber>Math.min(double, double)public BinaryFunction<ComplexNumber> multiply()
FunctionSetmultiply in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> negate()
negate in class FunctionSet<ComplexNumber>public BinaryFunction<ComplexNumber> pow()
pow in class FunctionSet<ComplexNumber>Math.pow(double, double)public ParameterFunction<ComplexNumber> power()
power in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> rint()
rint in class FunctionSet<ComplexNumber>Math.rint(double)public ParameterFunction<ComplexNumber> root()
root in class FunctionSet<ComplexNumber>public ParameterFunction<ComplexNumber> scale()
scale in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> signum()
signum in class FunctionSet<ComplexNumber>Math.signum(double)public UnaryFunction<ComplexNumber> sin()
sin in class FunctionSet<ComplexNumber>Math.sin(double)public UnaryFunction<ComplexNumber> sinh()
sinh in class FunctionSet<ComplexNumber>Math.sinh(double)public UnaryFunction<ComplexNumber> sqrt()
sqrt in class FunctionSet<ComplexNumber>Math.sqrt(double)public UnaryFunction<ComplexNumber> sqrt1px2()
sqrt1px2 in class FunctionSet<ComplexNumber>public BinaryFunction<ComplexNumber> subtract()
FunctionSetsubtract in class FunctionSet<ComplexNumber>public UnaryFunction<ComplexNumber> tan()
tan in class FunctionSet<ComplexNumber>Math.tan(double)public UnaryFunction<ComplexNumber> tanh()
tanh in class FunctionSet<ComplexNumber>Math.tanh(double)public UnaryFunction<ComplexNumber> value()
value in class FunctionSet<ComplexNumber>Copyright © 2019 Optimatika. All rights reserved.