Uses of Class
cern.colt.matrix.impl.AbstractMatrix3D
-
Packages that use AbstractMatrix3D Package Description cern.colt.matrix Matrix interfaces and factories; efficient and flexible dense and sparse 1, 2, 3 and d-dimensional matrices holding objects or primitive data types such as int, double, etc; Templated, fixed sized (not dynamically resizable); Also known as multi-dimensional arrays or Data Cubes.cern.colt.matrix.impl Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces ofcern.colt.matrix, without subsetting or supersetting. -
-
Uses of AbstractMatrix3D in cern.colt.matrix
Subclasses of AbstractMatrix3D in cern.colt.matrix Modifier and Type Class Description classDoubleMatrix3DAbstract base class for 3-d matrices holding double elements.classObjectMatrix3DAbstract base class for 3-d matrices holding Object elements. -
Uses of AbstractMatrix3D in cern.colt.matrix.impl
Subclasses of AbstractMatrix3D in cern.colt.matrix.impl Modifier and Type Class Description classDenseDoubleMatrix3DDense 3-d matrix holding double elements.classDenseObjectMatrix3DDense 3-d matrix holding Object elements.(package private) classSelectedDenseDoubleMatrix3DSelection view on dense 3-d matrices holding double elements.(package private) classSelectedDenseObjectMatrix3DSelection view on dense 3-d matrices holding Object elements.(package private) classSelectedSparseDoubleMatrix3DSelection view on sparse 3-d matrices holding double elements.(package private) classSelectedSparseObjectMatrix3DSelection view on sparse 3-d matrices holding Object elements.classSparseDoubleMatrix3DSparse hashed 3-d matrix holding double elements.classSparseObjectMatrix3DSparse hashed 3-d matrix holding Object elements.Methods in cern.colt.matrix.impl that return AbstractMatrix3D Modifier and Type Method Description protected AbstractMatrix3DAbstractMatrix3D. vColumnFlip()Self modifying version of viewColumnFlip().protected AbstractMatrix3DAbstractMatrix3D. vDice(int axis0, int axis1, int axis2)Self modifying version of viewDice().protected AbstractMatrix3DSelectedDenseDoubleMatrix3D. vDice(int axis0, int axis1, int axis2)Self modifying version of viewDice().protected AbstractMatrix3DSelectedDenseObjectMatrix3D. vDice(int axis0, int axis1, int axis2)Self modifying version of viewDice().protected AbstractMatrix3DSelectedSparseDoubleMatrix3D. vDice(int axis0, int axis1, int axis2)Self modifying version of viewDice().protected AbstractMatrix3DSelectedSparseObjectMatrix3D. vDice(int axis0, int axis1, int axis2)Self modifying version of viewDice().protected AbstractMatrix3DAbstractMatrix3D. vPart(int slice, int row, int column, int depth, int height, int width)Self modifying version of viewPart().protected AbstractMatrix3DAbstractMatrix3D. vRowFlip()Self modifying version of viewRowFlip().protected AbstractMatrix3DAbstractMatrix3D. vSliceFlip()Self modifying version of viewSliceFlip().protected AbstractMatrix3DAbstractMatrix3D. vStrides(int sliceStride, int rowStride, int columnStride)Self modifying version of viewStrides().Methods in cern.colt.matrix.impl with parameters of type AbstractMatrix3D Modifier and Type Method Description voidAbstractMatrix3D. checkShape(AbstractMatrix3D B)Sanity check for operations requiring two matrices with the same number of slices, rows and columns.voidAbstractMatrix3D. checkShape(AbstractMatrix3D B, AbstractMatrix3D C)Sanity check for operations requiring matrices with the same number of slices, rows and columns.static java.lang.StringAbstractFormatter. shape(AbstractMatrix3D matrix)Returns a short string representation describing the shape of the matrix.
-