Class WrapperIntMatrix3D
- java.lang.Object
-
- cern.colt.PersistentObject
-
- cern.colt.matrix.AbstractMatrix
-
- cern.colt.matrix.AbstractMatrix3D
-
- cern.colt.matrix.tint.IntMatrix3D
-
- cern.colt.matrix.tint.impl.WrapperIntMatrix3D
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
- Direct Known Subclasses:
- DenseLargeIntMatrix3D
public class WrapperIntMatrix3D extends IntMatrix3D
3-d matrix holding int elements; either a view wrapping another matrix or a matrix whose views are wrappers.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description WrapperIntMatrix3D(IntMatrix3D newContent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.Objectelements()Returns the elements of this matrix.intgetQuick(int slice, int row, int column)Returns the matrix cell value at coordinate [slice,row,column].IntMatrix3Dlike(int slices, int rows, int columns)Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns.IntMatrix2Dlike2D(int rows, int columns)Construct and returns a new 2-d matrix of the corresponding dynamic type, sharing the same cells.voidsetQuick(int slice, int row, int column, int value)Sets the matrix cell at coordinate [slice,row,column] to the specified value.IntMatrix1Dvectorize()Returns a vector obtained by stacking the columns of each slice of the matrix on top of one another.IntMatrix2DviewColumn(int column)Constructs and returns a new 2-dimensional slice view representing the slices and rows of the given column.IntMatrix3DviewColumnFlip()Constructs and returns a new flip view aint the column axis.IntMatrix3DviewDice(int axis0, int axis1, int axis2)Constructs and returns a new dice view; Swaps dimensions (axes); Example: 3 x 4 x 5 matrix --> 4 x 3 x 5 matrix.IntMatrix3DviewPart(int slice, int row, int column, int depth, int height, int width)Constructs and returns a new sub-range view that is a depth x height x width sub matrix starting at [slice,row,column]; Equivalent to view().part(slice,row,column,depth,height,width); Provided for convenience only.IntMatrix2DviewRow(int row)Constructs and returns a new 2-dimensional slice view representing the slices and columns of the given row.IntMatrix3DviewRowFlip()Constructs and returns a new flip view aint the row axis.IntMatrix3DviewSelection(int[] sliceIndexes, int[] rowIndexes, int[] columnIndexes)Constructs and returns a new selection view that is a matrix holding the indicated cells.IntMatrix2DviewSlice(int slice)Constructs and returns a new 2-dimensional slice view representing the rows and columns of the given slice.IntMatrix3DviewSliceFlip()Constructs and returns a new flip view aint the slice axis.IntMatrix3DviewStrides(int _sliceStride, int _rowStride, int _columnStride)Constructs and returns a new stride view which is a sub matrix consisting of every i-th cell.-
Methods inherited from class cern.colt.matrix.tint.IntMatrix3D
aggregate, aggregate, aggregate, aggregate, assign, assign, assign, assign, assign, assign, assign, assign, assign, cardinality, copy, equals, equals, get, getMaxLocation, getMinLocation, getNegativeValues, getNonZeros, getPositiveValues, like, set, toArray, toString, viewSelection, viewSorted, zSum
-
Methods inherited from class cern.colt.matrix.AbstractMatrix3D
checkShape, checkShape, columns, columnStride, index, rows, rowStride, size, slices, sliceStride, toStringShort
-
Methods inherited from class cern.colt.matrix.AbstractMatrix
ensureCapacity, isView, trimToSize
-
Methods inherited from class cern.colt.PersistentObject
clone
-
-
-
-
Constructor Detail
-
WrapperIntMatrix3D
public WrapperIntMatrix3D(IntMatrix3D newContent)
-
-
Method Detail
-
elements
public java.lang.Object elements()
Description copied from class:IntMatrix3DReturns the elements of this matrix.- Specified by:
elementsin classIntMatrix3D- Returns:
- the elements
-
getQuick
public int getQuick(int slice, int row, int column)Description copied from class:IntMatrix3DReturns the matrix cell value at coordinate [slice,row,column].Provided with invalid parameters this method may return invalid objects without throwing any exception. You should only use this method when you are absolutely sure that the coordinate is within bounds. Precondition (unchecked): slice<0 || slice>=slices() || row<0 || row>=rows() || column<0 || column>=column().
- Specified by:
getQuickin classIntMatrix3D- Parameters:
slice- the index of the slice-coordinate.row- the index of the row-coordinate.column- the index of the column-coordinate.- Returns:
- the value at the specified coordinate.
-
like
public IntMatrix3D like(int slices, int rows, int columns)
Description copied from class:IntMatrix3DConstruct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns. For example, if the receiver is an instance of type DenseIntMatrix3D the new matrix must also be of type DenseIntMatrix3D, if the receiver is an instance of type SparseIntMatrix3D the new matrix must also be of type SparseIntMatrix3D, etc. In general, the new matrix should have internal parametrization as similar as possible.- Specified by:
likein classIntMatrix3D- Parameters:
slices- the number of slices the matrix shall have.rows- the number of rows the matrix shall have.columns- the number of columns the matrix shall have.- Returns:
- a new empty matrix of the same dynamic type.
-
setQuick
public void setQuick(int slice, int row, int column, int value)Description copied from class:IntMatrix3DSets the matrix cell at coordinate [slice,row,column] to the specified value.Provided with invalid parameters this method may access illegal indexes without throwing any exception. You should only use this method when you are absolutely sure that the coordinate is within bounds. Precondition (unchecked): slice<0 || slice>=slices() || row<0 || row>=rows() || column<0 || column>=column().
- Specified by:
setQuickin classIntMatrix3D- Parameters:
slice- the index of the slice-coordinate.row- the index of the row-coordinate.column- the index of the column-coordinate.value- the value to be filled into the specified cell.
-
vectorize
public IntMatrix1D vectorize()
Description copied from class:IntMatrix3DReturns a vector obtained by stacking the columns of each slice of the matrix on top of one another.- Specified by:
vectorizein classIntMatrix3D- Returns:
- a vector obtained by stacking the columns of each slice of the matrix on top of one another.
-
viewColumn
public IntMatrix2D viewColumn(int column)
Description copied from class:IntMatrix3DConstructs and returns a new 2-dimensional slice view representing the slices and rows of the given column. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.To obtain a slice view on subranges, construct a sub-ranging view ( view().part(...)), then apply this method to the sub-range view. To obtain 1-dimensional views, apply this method, then apply another slice view (methods viewColumn, viewRow) on the intermediate 2-dimensional view. To obtain 1-dimensional views on subranges, apply both steps.
- Overrides:
viewColumnin classIntMatrix3D- Parameters:
column- the index of the column to fix.- Returns:
- a new 2-dimensional slice view.
- See Also:
IntMatrix3D.viewSlice(int),IntMatrix3D.viewRow(int)
-
viewColumnFlip
public IntMatrix3D viewColumnFlip()
Description copied from class:IntMatrix3DConstructs and returns a new flip view aint the column axis. What used to be column 0 is now column columns()-1, ..., what used to be column columns()-1 is now column 0. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.- Overrides:
viewColumnFlipin classIntMatrix3D- Returns:
- a new flip view.
- See Also:
IntMatrix3D.viewSliceFlip(),IntMatrix3D.viewRowFlip()
-
viewSlice
public IntMatrix2D viewSlice(int slice)
Description copied from class:IntMatrix3DConstructs and returns a new 2-dimensional slice view representing the rows and columns of the given slice. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.To obtain a slice view on subranges, construct a sub-ranging view ( view().part(...)), then apply this method to the sub-range view. To obtain 1-dimensional views, apply this method, then apply another slice view (methods viewColumn, viewRow) on the intermediate 2-dimensional view. To obtain 1-dimensional views on subranges, apply both steps.
- Overrides:
viewSlicein classIntMatrix3D- Parameters:
slice- the index of the slice to fix.- Returns:
- a new 2-dimensional slice view.
- See Also:
IntMatrix3D.viewRow(int),IntMatrix3D.viewColumn(int)
-
viewSliceFlip
public IntMatrix3D viewSliceFlip()
Description copied from class:IntMatrix3DConstructs and returns a new flip view aint the slice axis. What used to be slice 0 is now slice slices()-1, ..., what used to be slice slices()-1 is now slice 0. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.- Overrides:
viewSliceFlipin classIntMatrix3D- Returns:
- a new flip view.
- See Also:
IntMatrix3D.viewRowFlip(),IntMatrix3D.viewColumnFlip()
-
viewDice
public IntMatrix3D viewDice(int axis0, int axis1, int axis2)
Description copied from class:IntMatrix3DConstructs and returns a new dice view; Swaps dimensions (axes); Example: 3 x 4 x 5 matrix --> 4 x 3 x 5 matrix. The view has dimensions exchanged; what used to be one axis is now another, in all desired permutations. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.- Overrides:
viewDicein classIntMatrix3D- Parameters:
axis0- the axis that shall become axis 0 (legal values 0..2).axis1- the axis that shall become axis 1 (legal values 0..2).axis2- the axis that shall become axis 2 (legal values 0..2).- Returns:
- a new dice view.
-
viewPart
public IntMatrix3D viewPart(int slice, int row, int column, int depth, int height, int width)
Description copied from class:IntMatrix3DConstructs and returns a new sub-range view that is a depth x height x width sub matrix starting at [slice,row,column]; Equivalent to view().part(slice,row,column,depth,height,width); Provided for convenience only. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.- Overrides:
viewPartin classIntMatrix3D- Parameters:
slice- The index of the slice-coordinate.row- The index of the row-coordinate.column- The index of the column-coordinate.depth- The depth of the box.height- The height of the box.width- The width of the box.- Returns:
- the new view.
-
viewRow
public IntMatrix2D viewRow(int row)
Description copied from class:IntMatrix3DConstructs and returns a new 2-dimensional slice view representing the slices and columns of the given row. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.To obtain a slice view on subranges, construct a sub-ranging view ( view().part(...)), then apply this method to the sub-range view. To obtain 1-dimensional views, apply this method, then apply another slice view (methods viewColumn, viewRow) on the intermediate 2-dimensional view. To obtain 1-dimensional views on subranges, apply both steps.
- Overrides:
viewRowin classIntMatrix3D- Parameters:
row- the index of the row to fix.- Returns:
- a new 2-dimensional slice view.
- See Also:
IntMatrix3D.viewSlice(int),IntMatrix3D.viewColumn(int)
-
viewRowFlip
public IntMatrix3D viewRowFlip()
Description copied from class:IntMatrix3DConstructs and returns a new flip view aint the row axis. What used to be row 0 is now row rows()-1, ..., what used to be row rows()-1 is now row 0. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.- Overrides:
viewRowFlipin classIntMatrix3D- Returns:
- a new flip view.
- See Also:
IntMatrix3D.viewSliceFlip(),IntMatrix3D.viewColumnFlip()
-
viewSelection
public IntMatrix3D viewSelection(int[] sliceIndexes, int[] rowIndexes, int[] columnIndexes)
Description copied from class:IntMatrix3DConstructs and returns a new selection view that is a matrix holding the indicated cells. There holds view.slices() == sliceIndexes.length, view.rows() == rowIndexes.length, view.columns() == columnIndexes.length and view.get(k,i,j) == this.get(sliceIndexes[k],rowIndexes[i],columnIndexes[j]) . Indexes can occur multiple times and can be in arbitrary order. For an example seeIntMatrix2D.viewSelection(int[],int[]).Note that modifying the index arguments after this call has returned has no effect on the view. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.
- Overrides:
viewSelectionin classIntMatrix3D- Parameters:
sliceIndexes- The slices of the cells that shall be visible in the new view. To indicate that all slices shall be visible, simply set this parameter to null.rowIndexes- The rows of the cells that shall be visible in the new view. To indicate that all rows shall be visible, simply set this parameter to null.columnIndexes- The columns of the cells that shall be visible in the new view. To indicate that all columns shall be visible, simply set this parameter to null.- Returns:
- the new view.
-
viewStrides
public IntMatrix3D viewStrides(int _sliceStride, int _rowStride, int _columnStride)
Description copied from class:IntMatrix3DConstructs and returns a new stride view which is a sub matrix consisting of every i-th cell. More specifically, the view has this.slices()/sliceStride slices and this.rows()/rowStride rows and this.columns()/columnStride columns holding cells this.get(k*sliceStride,i*rowStride,j*columnStride) for all k = 0..slices()/sliceStride - 1, i = 0..rows()/rowStride - 1, j = 0..columns()/columnStride - 1 . The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa.- Overrides:
viewStridesin classIntMatrix3D- Parameters:
_sliceStride- the slice step factor._rowStride- the row step factor._columnStride- the column step factor.- Returns:
- a new view.
-
like2D
public IntMatrix2D like2D(int rows, int columns)
Description copied from class:IntMatrix3DConstruct and returns a new 2-d matrix of the corresponding dynamic type, sharing the same cells. For example, if the receiver is an instance of type DenseDoubleMatrix3D the new matrix must also be of type DenseDoubleMatrix2D, if the receiver is an instance of type SparseDoubleMatrix3D the new matrix must also be of type SparseDoubleMatrix2D, etc.- Specified by:
like2Din classIntMatrix3D- Parameters:
rows- the number of rows the matrix shall have.columns- the number of columns the matrix shall have.- Returns:
- a new matrix of the corresponding dynamic type.
-
-
DMelt 3.0 © DataMelt by jWork.ORG