| Modifier and Type | Class and Description |
|---|---|
class |
ByteLargeArray
An array of signed bytes [-128, 127] that can store up to 263 elements.
|
class |
ComplexDoubleLargeArray
An array of complex numbers (double precision) that can store up to 263 elements.
|
class |
ComplexFloatLargeArray
An array of complex numbers (double precision) that can store up to 263 elements.
|
class |
DoubleLargeArray
An array of doubles that can store up to 263 elements.
|
class |
FloatLargeArray
An array of floats that can store up to 263 elements.
|
class |
IntLargeArray
An array of ints that can store up to 263 elements.
|
class |
LogicLargeArray
An array of bits (0 and 1) that can store up to 263 elements.
|
class |
LongLargeArray
An array of longs that can store up to 263 elements.
|
class |
ObjectLargeArray
An array of objects that can store up to 263 elements.
|
class |
ShortLargeArray
An array of shorts that can store up to 263 elements.
|
class |
StringLargeArray
An array of strings that can store up to 263 elements.
|
class |
UnsignedByteLargeArray
An array of unsigned bytes [0, 255] that can store up to 263 elements.
|
| Modifier and Type | Method and Description |
|---|---|
static LargeArray |
LargeArrayArithmetics.abs(LargeArray a)
Absolute value of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.abs(LargeArray a,
LargeArrayType out_type)
Absolute value of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.acos(LargeArray a)
Acos of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.acos(LargeArray a,
LargeArrayType out_type)
Acos of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.add(LargeArray a,
LargeArray b)
Addition of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.add(LargeArray a,
LargeArray b,
LargeArrayType out_type)
Addition of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.asin(LargeArray a)
Asin of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.asin(LargeArray a,
LargeArrayType out_type)
Asin of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.atan(LargeArray a)
Atan of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.atan(LargeArray a,
LargeArrayType out_type)
Atan of LargeArray.
|
static LargeArray |
LargeArrayUtils.convert(LargeArray src,
LargeArrayType type)
Converts LargeArray to a given type.
|
static LargeArray |
LargeArrayArithmetics.cos(LargeArray a)
Cos of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.cos(LargeArray a,
LargeArrayType out_type)
Cos of LargeArray.
|
static LargeArray |
LargeArrayUtils.create(LargeArrayType type,
long length)
Creates a new instance of LargeArray.
|
static LargeArray |
LargeArrayUtils.create(LargeArrayType type,
long length,
boolean zeroNativeMemory)
Creates a new instance of LargeArray
|
static LargeArray |
LargeArrayUtils.createConstant(LargeArrayType type,
long length,
Object value)
Creates a new constant LargeArray.
|
static LargeArray |
LargeArrayArithmetics.diff(LargeArray a,
LargeArray b)
Subtraction of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.diff(LargeArray a,
LargeArray b,
LargeArrayType out_type)
Subtraction of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.div(LargeArray a,
LargeArray b)
Division of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.div(LargeArray a,
LargeArray b,
LargeArrayType out_type)
Division of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.exp(LargeArray a)
Exponent of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.exp(LargeArray a,
LargeArrayType out_type)
Exponent of LargeArray.
|
static LargeArray |
LargeArrayUtils.generateRandom(LargeArrayType type,
long length)
Generates a random LargeArray
|
static LargeArray |
LargeArrayArithmetics.log(LargeArray a)
Natural logarithm of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.log(LargeArray a,
LargeArrayType out_type)
Natural logarithm of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.log10(LargeArray a)
Base 10 logarithm of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.log10(LargeArray a,
LargeArrayType out_type)
Base 10 logarithm of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.mult(LargeArray a,
LargeArray b)
Multiplication of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.mult(LargeArray a,
LargeArray b,
LargeArrayType out_type)
Multiplication of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.neg(LargeArray a)
Negation of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.neg(LargeArray a,
LargeArrayType out_type)
Negation of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.pow(LargeArray a,
double n)
Power of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.pow(LargeArray a,
double n,
LargeArrayType out_type)
Power of LargeArray.
|
static LargeArray |
LargeArrayUtils.select(LargeArray src,
LogicLargeArray mask)
Returns all elements of the specified source array for which the corresponding mask element is equal to 1.
|
static LargeArray |
LargeArrayArithmetics.signum(LargeArray a)
Signum of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.signum(LargeArray a,
LargeArrayType out_type)
Signum of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.sin(LargeArray a)
Sin of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.sin(LargeArray a,
LargeArrayType out_type)
Sin of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.sqrt(LargeArray a)
Square root of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.sqrt(LargeArray a,
LargeArrayType out_type)
Square root of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.tan(LargeArray a)
Tan of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.tan(LargeArray a,
LargeArrayType out_type)
Tan of LargeArray.
|
| Modifier and Type | Method and Description |
|---|---|
static LargeArray |
LargeArrayArithmetics.abs(LargeArray a)
Absolute value of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.abs(LargeArray a,
LargeArrayType out_type)
Absolute value of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.acos(LargeArray a)
Acos of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.acos(LargeArray a,
LargeArrayType out_type)
Acos of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.add(LargeArray a,
LargeArray b)
Addition of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.add(LargeArray a,
LargeArray b,
LargeArrayType out_type)
Addition of two LargeArrays.
|
static void |
LargeArrayUtils.arraycopy(LargeArray src,
long srcPos,
LargeArray dest,
long destPos,
long length)
Copies an array from the specified source array, beginning at the
specified position, to the specified position of the destination array.
|
static void |
LargeArrayUtils.arraycopy(Object src,
long srcPos,
LargeArray dest,
long destPos,
long length)
Copies an array from the specified source array, beginning at the
specified position, to the specified position of the destination array.
|
static LargeArray |
LargeArrayArithmetics.asin(LargeArray a)
Asin of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.asin(LargeArray a,
LargeArrayType out_type)
Asin of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.atan(LargeArray a)
Atan of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.atan(LargeArray a,
LargeArrayType out_type)
Atan of LargeArray.
|
static double |
LargeArrayStatistics.avg(LargeArray a)
Mean value of a LargeArray.
|
static double |
LargeArrayStatistics.avgKahan(LargeArray a)
Mean value of a LargeArray computed using Kahan algorithm.
|
static LargeArray |
LargeArrayUtils.convert(LargeArray src,
LargeArrayType type)
Converts LargeArray to a given type.
|
static LargeArray |
LargeArrayArithmetics.cos(LargeArray a)
Cos of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.cos(LargeArray a,
LargeArrayType out_type)
Cos of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.diff(LargeArray a,
LargeArray b)
Subtraction of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.diff(LargeArray a,
LargeArray b,
LargeArrayType out_type)
Subtraction of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.div(LargeArray a,
LargeArray b)
Division of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.div(LargeArray a,
LargeArray b,
LargeArrayType out_type)
Division of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.exp(LargeArray a)
Exponent of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.exp(LargeArray a,
LargeArrayType out_type)
Exponent of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.log(LargeArray a)
Natural logarithm of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.log(LargeArray a,
LargeArrayType out_type)
Natural logarithm of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.log10(LargeArray a)
Base 10 logarithm of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.log10(LargeArray a,
LargeArrayType out_type)
Base 10 logarithm of LargeArray.
|
static double |
LargeArrayStatistics.max(LargeArray a)
Max value of a LargeArray.
|
static double |
LargeArrayStatistics.min(LargeArray a)
Min value of a LargeArray.
|
static LargeArray |
LargeArrayArithmetics.mult(LargeArray a,
LargeArray b)
Multiplication of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.mult(LargeArray a,
LargeArray b,
LargeArrayType out_type)
Multiplication of two LargeArrays.
|
static LargeArray |
LargeArrayArithmetics.neg(LargeArray a)
Negation of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.neg(LargeArray a,
LargeArrayType out_type)
Negation of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.pow(LargeArray a,
double n)
Power of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.pow(LargeArray a,
double n,
LargeArrayType out_type)
Power of LargeArray.
|
static LargeArray |
LargeArrayUtils.select(LargeArray src,
LogicLargeArray mask)
Returns all elements of the specified source array for which the corresponding mask element is equal to 1.
|
static LargeArray |
LargeArrayArithmetics.signum(LargeArray a)
Signum of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.signum(LargeArray a,
LargeArrayType out_type)
Signum of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.sin(LargeArray a)
Sin of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.sin(LargeArray a,
LargeArrayType out_type)
Sin of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.sqrt(LargeArray a)
Square root of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.sqrt(LargeArray a,
LargeArrayType out_type)
Square root of LargeArray.
|
static double |
LargeArrayStatistics.std(LargeArray a)
Standard deviation value of a LargeArray.
|
static double |
LargeArrayStatistics.stdKahan(LargeArray a)
Standard deviation value of a LargeArray computed using Kahan algorithm.
|
static double |
LargeArrayStatistics.sum(LargeArray a)
Sum of all elements in a LargeArray.
|
static double |
LargeArrayStatistics.sumKahan(LargeArray a)
Sum of all elements in a LargeArray computed using Kahan algorithm.
|
static LargeArray |
LargeArrayArithmetics.tan(LargeArray a)
Tan of LargeArray.
|
static LargeArray |
LargeArrayArithmetics.tan(LargeArray a,
LargeArrayType out_type)
Tan of LargeArray.
|
Copyright © 2015. All rights reserved.