Uses of Interface
io.github.hakkelt.ndarrays.internal.RealNDArray
-
Packages that use RealNDArray Package Description io.github.hakkelt.ndarrays General framework for N-dimensional arrays holding either complex or real values.io.github.hakkelt.ndarrays.basic Simple reference implementation for NDArrays backed by 1D arrays of primitive values.io.github.hakkelt.ndarrays.internal Internal classes meant to be used for developing new NDArray-based packages, but should not be used directly. -
-
Uses of RealNDArray in io.github.hakkelt.ndarrays
Classes in io.github.hakkelt.ndarrays that implement RealNDArray Modifier and Type Class Description class
AbstractBigDecimalNDArray
Abstract NDArray class for arbitrary precision floating point values.class
AbstractBigIntegerNDArray
Abstract NDArray class for arbitrary precision integer values.class
AbstractByteNDArray
Abstract NDArray class for byte (8-bit integer) values.class
AbstractDoubleNDArray
Abstract NDArray class for double (8-bit integer) values.class
AbstractFloatNDArray
Abstract NDArray class for float (8-bit integer) values.class
AbstractIntegerNDArray
Abstract NDArray class for int (8-bit integer) values.class
AbstractLongNDArray
Abstract NDArray class for long (8-bit integer) values.class
AbstractShortNDArray
Abstract NDArray class for short (8-bit integer) values. -
Uses of RealNDArray in io.github.hakkelt.ndarrays.basic
Classes in io.github.hakkelt.ndarrays.basic that implement RealNDArray Modifier and Type Class Description class
BasicBigDecimalNDArray
Reference implementation for the NDArray of BigDecimal (arbitrary precision floating-point) values.class
BasicBigIntegerNDArray
Reference implementation for the NDArray of BigInteger (arbitrary precision integer) values.class
BasicByteNDArray
Reference implementation for the NDArray of byte (8 bit integer) values.class
BasicDoubleNDArray
Reference implementation for the NDArray of double (double precision, 64 bit floating-point) values.class
BasicFloatNDArray
Reference implementation for the NDArray of float (single precision, 32 bit floating-point) values.class
BasicIntegerNDArray
Reference implementation for the NDArray of int (32 bit integer) values.class
BasicLongNDArray
Reference implementation for the NDArray of long (64 bit integer) values.class
BasicShortNDArray
Reference implementation for the NDArray of short (16 bit integer) values. -
Uses of RealNDArray in io.github.hakkelt.ndarrays.internal
Classes in io.github.hakkelt.ndarrays.internal that implement RealNDArray Modifier and Type Class Description class
AbstractRealNDArray<T extends Number>
class
RealNDArrayMaskView<T extends Number>
A view for an NDArray holding real values that selects values based on a specified mask.class
RealNDArrayPermuteDimsView<T extends Number>
A view for an NDArray holding real values that permutes the order of dimensions.class
RealNDArrayReshapeView<T extends Number>
A view for an NDArray holding real values that changes the shape of the parent NDArray.class
RealNDArraySliceView<T extends Number>
A view for an NDArray holding real values that slices the parent NDArray.Methods in io.github.hakkelt.ndarrays.internal with parameters of type RealNDArray Modifier and Type Method Description NDArray<T2>
CopyFromOperations. copyFrom(RealNDArray<T2> me, NDArray<?> array)
NDArray<T2>
ViewOperations. internalSlice(RealNDArray<T2> me, NormalizedRange[] slicingExpressions)
NDArray<T2>
ViewOperations. mask(RealNDArray<T2> me, NDArray<?> mask, boolean isInverse)
NDArray<T2>
ViewOperations. mask(RealNDArray<T2> me, BiPredicate<T2,?> func, boolean withLinearIndices)
NDArray<T2>
ViewOperations. mask(RealNDArray<T2> me, Predicate<T2> func)
NDArray<T2>
ViewOperations. permuteDims(RealNDArray<T2> me, int... permutation)
NDArray<T2>
ViewOperations. reshape(RealNDArray<T2> me, int... newShape)
NDArray<T2>
ViewOperations. slice(RealNDArray<T2> me, Object... slicingExpressions)
-