public class ElementOps extends Object
Modifier and Type | Class and Description |
---|---|
protected static interface |
ElementOps.ComplexAccumulatorOperation
Defines complex accumulator operations.
|
static interface |
ElementOps.ComplexBinaryOperation
Defines complex binary operations.
|
static interface |
ElementOps.ComplexToRealOperation
Defines complex-to-real operations.
|
protected static interface |
ElementOps.IntegerBinaryOperation
Defines integer binary operations.
|
protected static interface |
ElementOps.RealAccumulatorOperation
Defines real accumulator operations.
|
protected static interface |
ElementOps.RealBinaryOperation
Defines real binary operations.
|
protected static interface |
ElementOps.RealToComplexOperation
Defines real-to-complex operations.
|
Modifier and Type | Method and Description |
---|---|
static double[] |
caOp(int type,
double[] srcV)
A complex accumulator operation in support of
JavaArrayKernel.caOp(int, double[]) . |
static void |
convert(int type,
Object srcV,
boolean isSrcComplex,
Object dstV,
boolean isDstComplex)
A type conversion operation in support of
JavaArrayKernel.convert(int, Object, boolean, Object, boolean) . |
static void |
cuOp(int type,
double aRe,
double aIm,
double[] srcV)
A complex unary elementwise operation in support of
JavaArrayKernel.cuOp(int, double, double, double[]) . |
static void |
eOp(int type,
Object lhs,
Object rhs,
Object dst,
boolean complex)
A binary elementwise operation in support of
JavaArrayKernel.eOp(int, Object, Object, Object, boolean) . |
static void |
iuOp(int type,
int a,
int[] srcV)
An integer unary elementwise operation in support of
JavaArrayKernel.iuOp(int, int, int[]) . |
static double |
raOp(int type,
double[] srcV)
A real accumulator operation in support of
JavaArrayKernel.raOp(int, double[]) . |
static void |
ruOp(int type,
double a,
double[] srcV)
A real unary elementwise operation in support of
JavaArrayKernel.ruOp(int, double, double[]) . |
public static final double raOp(int type, double[] srcV)
JavaArrayKernel.raOp(int, double[])
.public static final double[] caOp(int type, double[] srcV)
JavaArrayKernel.caOp(int, double[])
.public static final void ruOp(int type, double a, double[] srcV)
JavaArrayKernel.ruOp(int, double, double[])
.public static final void cuOp(int type, double aRe, double aIm, double[] srcV)
JavaArrayKernel.cuOp(int, double, double, double[])
.public static final void iuOp(int type, int a, int[] srcV)
JavaArrayKernel.iuOp(int, int, int[])
.public static final void eOp(int type, Object lhs, Object rhs, Object dst, boolean complex)
JavaArrayKernel.eOp(int, Object, Object, Object, boolean)
.public static final void convert(int type, Object srcV, boolean isSrcComplex, Object dstV, boolean isDstComplex)
JavaArrayKernel.convert(int, Object, boolean, Object, boolean)
.