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 classAbstractBigDecimalNDArrayAbstract NDArray class for arbitrary precision floating point values.classAbstractBigIntegerNDArrayAbstract NDArray class for arbitrary precision integer values.classAbstractByteNDArrayAbstract NDArray class for byte (8-bit integer) values.classAbstractDoubleNDArrayAbstract NDArray class for double (8-bit integer) values.classAbstractFloatNDArrayAbstract NDArray class for float (8-bit integer) values.classAbstractIntegerNDArrayAbstract NDArray class for int (8-bit integer) values.classAbstractLongNDArrayAbstract NDArray class for long (8-bit integer) values.classAbstractShortNDArrayAbstract 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 classBasicBigDecimalNDArrayReference implementation for the NDArray of BigDecimal (arbitrary precision floating-point) values.classBasicBigIntegerNDArrayReference implementation for the NDArray of BigInteger (arbitrary precision integer) values.classBasicByteNDArrayReference implementation for the NDArray of byte (8 bit integer) values.classBasicDoubleNDArrayReference implementation for the NDArray of double (double precision, 64 bit floating-point) values.classBasicFloatNDArrayReference implementation for the NDArray of float (single precision, 32 bit floating-point) values.classBasicIntegerNDArrayReference implementation for the NDArray of int (32 bit integer) values.classBasicLongNDArrayReference implementation for the NDArray of long (64 bit integer) values.classBasicShortNDArrayReference 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 classAbstractRealNDArray<T extends Number>classRealNDArrayMaskView<T extends Number>A view for an NDArray holding real values that selects values based on a specified mask.classRealNDArrayPermuteDimsView<T extends Number>A view for an NDArray holding real values that permutes the order of dimensions.classRealNDArrayReshapeView<T extends Number>A view for an NDArray holding real values that changes the shape of the parent NDArray.classRealNDArraySliceView<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)
-