public class WrapperDComplexMatrix3D extends DComplexMatrix3D
Constructor and Description |
---|
WrapperDComplexMatrix3D(DComplexMatrix3D newContent) |
Modifier and Type | Method and Description |
---|---|
Object |
elements()
Returns the elements of this matrix.
|
void |
fft2Slices()
Computes the 2D discrete Fourier transform (DFT) of each slice of this
matrix.
|
void |
fft3()
Computes the 3D discrete Fourier transform (DFT) of this matrix.
|
DoubleMatrix3D |
getImaginaryPart()
Returns the imaginary part of this matrix
|
double[] |
getQuick(int slice,
int row,
int column)
Returns the matrix cell value at coordinate [slice,row,column].
|
DoubleMatrix3D |
getRealPart()
Returns the real part of this matrix
|
void |
ifft2Slices(boolean scale)
Computes the 2D inverse of the discrete Fourier transform (IDFT) of each
slice of this matrix.
|
void |
ifft3(boolean scale)
Computes the 3D inverse of the discrete Fourier transform (IDFT) of this
matrix.
|
DComplexMatrix3D |
like(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.
|
DComplexMatrix2D |
like2D(int rows,
int columns)
Construct and returns a new 2-d matrix of the corresponding dynamic
type, sharing the same cells.
|
void |
setQuick(int slice,
int row,
int column,
double[] value)
Sets the matrix cell at coordinate [slice,row,column] to the
specified value.
|
void |
setQuick(int slice,
int row,
int column,
double re,
double im)
Sets the matrix cell at coordinate [slice,row,column] to the
specified value.
|
DComplexMatrix1D |
vectorize()
Returns a vector obtained by stacking the columns of each slice of the
matrix on top of one another.
|
DComplexMatrix2D |
viewColumn(int column)
Constructs and returns a new 2-dimensional slice view representing
the slices and rows of the given column.
|
DComplexMatrix3D |
viewColumnFlip()
Constructs and returns a new flip view along the column axis.
|
DComplexMatrix3D |
viewDice(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.
|
DComplexMatrix3D |
viewPart(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.
|
DComplexMatrix2D |
viewRow(int row)
Constructs and returns a new 2-dimensional slice view representing
the slices and columns of the given row.
|
DComplexMatrix3D |
viewRowFlip()
Constructs and returns a new flip view along the row axis.
|
DComplexMatrix3D |
viewSelection(int[] sliceIndexes,
int[] rowIndexes,
int[] columnIndexes)
Constructs and returns a new selection view that is a matrix
holding the indicated cells.
|
DComplexMatrix2D |
viewSlice(int slice)
Constructs and returns a new 2-dimensional slice view representing
the rows and columns of the given slice.
|
DComplexMatrix3D |
viewSliceFlip()
Constructs and returns a new flip view along the slice axis.
|
DComplexMatrix3D |
viewStrides(int _sliceStride,
int _rowStride,
int _columnStride)
Constructs and returns a new stride view which is a sub matrix
consisting of every i-th cell.
|
aggregate, aggregate, assign, assign, assign, assign, assign, assign, assign, assign, assign, assignImaginary, assignReal, cardinality, copy, equals, equals, get, getNonZeros, like, set, set, toArray, toString, toString, viewSelection, zSum
checkShape, checkShape, columns, columnStride, index, rows, rowStride, size, slices, sliceStride, toStringShort
ensureCapacity, isView, trimToSize
clone
public WrapperDComplexMatrix3D(DComplexMatrix3D newContent)
public Object elements()
DComplexMatrix3D
elements
in class DComplexMatrix3D
public void fft2Slices()
public void fft3()
public void ifft2Slices(boolean scale)
scale
- if true then scaling is performedpublic void ifft3(boolean scale)
scale
- if true then scaling is performedpublic double[] getQuick(int slice, int row, int column)
DComplexMatrix3D
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().
getQuick
in class DComplexMatrix3D
slice
- the index of the slice-coordinate.row
- the index of the row-coordinate.column
- the index of the column-coordinate.public DComplexMatrix3D like(int slices, int rows, int columns)
DComplexMatrix3D
like
in class DComplexMatrix3D
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.public void setQuick(int slice, int row, int column, double[] value)
DComplexMatrix3D
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().
setQuick
in class DComplexMatrix3D
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.public void setQuick(int slice, int row, int column, double re, double im)
DComplexMatrix3D
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().
setQuick
in class DComplexMatrix3D
slice
- the index of the slice-coordinate.row
- the index of the row-coordinate.column
- the index of the column-coordinate.re
- the real part of the value to be filled into the specified
cell.im
- the imaginary part of the value to be filled into the
specified cell.public DComplexMatrix1D vectorize()
DComplexMatrix3D
vectorize
in class DComplexMatrix3D
public DComplexMatrix2D viewColumn(int column)
DComplexMatrix3D
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.
viewColumn
in class DComplexMatrix3D
column
- the index of the column to fix.DComplexMatrix3D.viewSlice(int)
,
DComplexMatrix3D.viewRow(int)
public DComplexMatrix3D viewColumnFlip()
DComplexMatrix3D
viewColumnFlip
in class DComplexMatrix3D
DComplexMatrix3D.viewSliceFlip()
,
DComplexMatrix3D.viewRowFlip()
public DComplexMatrix2D viewSlice(int slice)
DComplexMatrix3D
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.
viewSlice
in class DComplexMatrix3D
slice
- the index of the slice to fix.DComplexMatrix3D.viewRow(int)
,
DComplexMatrix3D.viewColumn(int)
public DComplexMatrix3D viewSliceFlip()
DComplexMatrix3D
viewSliceFlip
in class DComplexMatrix3D
DComplexMatrix3D.viewRowFlip()
,
DComplexMatrix3D.viewColumnFlip()
public DComplexMatrix3D viewDice(int axis0, int axis1, int axis2)
DComplexMatrix3D
viewDice
in class DComplexMatrix3D
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).public DComplexMatrix3D viewPart(int slice, int row, int column, int depth, int height, int width)
DComplexMatrix3D
viewPart
in class DComplexMatrix3D
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.public DComplexMatrix2D viewRow(int row)
DComplexMatrix3D
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.
viewRow
in class DComplexMatrix3D
row
- the index of the row to fix.DComplexMatrix3D.viewSlice(int)
,
DComplexMatrix3D.viewColumn(int)
public DComplexMatrix3D viewRowFlip()
DComplexMatrix3D
viewRowFlip
in class DComplexMatrix3D
DComplexMatrix3D.viewSliceFlip()
,
DComplexMatrix3D.viewColumnFlip()
public DComplexMatrix3D viewSelection(int[] sliceIndexes, int[] rowIndexes, int[] columnIndexes)
DComplexMatrix3D
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.
viewSelection
in class DComplexMatrix3D
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.public DComplexMatrix3D viewStrides(int _sliceStride, int _rowStride, int _columnStride)
DComplexMatrix3D
viewStrides
in class DComplexMatrix3D
_sliceStride
- the slice step factor._rowStride
- the row step factor._columnStride
- the column step factor.public DComplexMatrix2D like2D(int rows, int columns)
DComplexMatrix3D
like2D
in class DComplexMatrix3D
rows
- the number of rows the matrix shall have.columns
- the number of columns the matrix shall have.public DoubleMatrix3D getImaginaryPart()
DComplexMatrix3D
getImaginaryPart
in class DComplexMatrix3D
public DoubleMatrix3D getRealPart()
DComplexMatrix3D
getRealPart
in class DComplexMatrix3D
Jump to the Parallel Colt Homepage