Class DenseDComplexMatrix3D
- java.lang.Object
-
- cern.colt.PersistentObject
-
- cern.colt.matrix.AbstractMatrix
-
- cern.colt.matrix.AbstractMatrix3D
-
- cern.colt.matrix.tdcomplex.DComplexMatrix3D
-
- cern.colt.matrix.tdcomplex.impl.DenseDComplexMatrix3D
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public class DenseDComplexMatrix3D extends DComplexMatrix3D
Dense 3-d matrix holding complex elements.Internally holds one single contigous one-dimensional array, addressed in (in decreasing order of significance): slice major, row major, column major. Complex data is represented by 2 double values in sequence, i.e. elements[idx] constitute the real part and elements[idx+1] constitute the imaginary part, where idx = index(0,0,0) + slice * sliceStride + row * rowStride + column * columnStride. Note that this implementation is not synchronized.
Applications demanding utmost speed can exploit knowledge about the internal addressing. Setting/getting values in a loop slice-by-slice, row-by-row, column-by-column is quicker than, for example, column-by-column, row-by-row, slice-by-slice. Thus
for (int slice = 0; slice < slices; slice++) { for (int row = 0; row < rows; row++) { for (int column = 0; column < columns; column++) { matrix.setQuick(slice, row, column, someValue); } } }is quicker thanfor (int column = 0; column < columns; column++) { for (int row = 0; row < rows; row++) { for (int slice = 0; slice < slices; slice++) { matrix.setQuick(slice, row, column, someValue); } } }- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description DenseDComplexMatrix3D(double[][][] values)Constructs a matrix with a copy of the given values.DenseDComplexMatrix3D(DoubleMatrix3D realPart)Constructs a matrix with the same size as realPart matrix and fills the real part of this matrix with elements of realPart.DenseDComplexMatrix3D(int slices, int rows, int columns)Constructs a matrix with a given number of slices, rows and columns.DenseDComplexMatrix3D(int slices, int rows, int columns, double[] elements, int sliceZero, int rowZero, int columnZero, int sliceStride, int rowStride, int columnStride, boolean isNoView)Constructs a matrix with the given parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description double[]aggregate(DComplexDComplexDComplexFunction aggr, DComplexDComplexFunction f)Applies a function to each cell and aggregates the results.double[]aggregate(DComplexMatrix3D other, DComplexDComplexDComplexFunction aggr, DComplexDComplexDComplexFunction f)Applies a function to each corresponding cell of two matrices and aggregates the results.DComplexMatrix3Dassign(DComplexDComplexFunction function)Assigns the result of a function to each cell.DComplexMatrix3Dassign(DComplexMatrix3D source)Replaces all cell values of the receiver with the values of another matrix.DComplexMatrix3Dassign(DComplexMatrix3D y, DComplexDComplexDComplexFunction function)Assigns the result of a function to each cell.DComplexMatrix3Dassign(DComplexProcedure cond, DComplexDComplexFunction f)Assigns the result of a function to all cells that satisfy a condition.DComplexMatrix3Dassign(DComplexProcedure cond, double[] value)Assigns a value to all cells that satisfy a condition.DComplexMatrix3Dassign(DComplexRealFunction function)Assigns the result of a function to the real part of the receiver.DComplexMatrix3Dassign(double[] values)Sets all cells to the state specified by values.DComplexMatrix3Dassign(double[][][] values)Sets all cells to the state specified by values.DComplexMatrix3Dassign(double re, double im)Sets all cells to the state specified by re and im.DComplexMatrix3DassignImaginary(DoubleMatrix3D other)Replaces imaginary part of the receiver with the values of another real matrix.DComplexMatrix3DassignReal(DoubleMatrix3D other)Replaces real part of the receiver with the values of another real matrix.intcardinality()Returns the number of cells having non-zero values; ignores tolerance.double[]elements()Returns the elements of this matrix.voidfft2Slices()Computes the 2D discrete Fourier transform (DFT) of each slice of this matrix.voidfft3()Computes the 3D discrete Fourier transform (DFT) of this matrix.DoubleMatrix3DgetImaginaryPart()Returns the imaginary part of this matrixvoidgetNonZeros(IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList, java.util.ArrayList<double[]> valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.double[]getQuick(int slice, int row, int column)Returns the matrix cell value at coordinate [slice,row,column].DoubleMatrix3DgetRealPart()Returns the real part of this matrixvoidifft2Slices(boolean scale)Computes the 2D inverse of the discrete Fourier transform (IDFT) of each slice of this matrix.voidifft3(boolean scale)Computes the 3D inverse of the discrete Fourier transform (IDFT) of this matrix.longindex(int slice, int row, int column)Returns the position of the given coordinate within the (virtual or non-virtual) internal 1-dimensional array.DComplexMatrix3Dlike(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.DComplexMatrix2Dlike2D(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, double[] value)Sets the matrix cell at coordinate [slice,row,column] to the specified value.voidsetQuick(int slice, int row, int column, double re, double im)Sets the matrix cell at coordinate [slice,row,column] to the specified value.double[][][]toArray()Constructs and returns a 3-dimensional array containing the cell values.DComplexMatrix1Dvectorize()Returns a vector obtained by stacking the columns of each slice of the matrix on top of one another.double[]zSum()Returns the sum of all cells; Sum( x[i,j,k] ).-
Methods inherited from class cern.colt.matrix.tdcomplex.DComplexMatrix3D
copy, equals, equals, get, like, set, set, toString, toString, viewColumn, viewColumnFlip, viewDice, viewPart, viewRow, viewRowFlip, viewSelection, viewSelection, viewSlice, viewSliceFlip, viewStrides
-
Methods inherited from class cern.colt.matrix.AbstractMatrix3D
checkShape, checkShape, columns, columnStride, 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
-
DenseDComplexMatrix3D
public DenseDComplexMatrix3D(double[][][] values)
Constructs a matrix with a copy of the given values. * values is required to have the form re = values[slice][row][2*column], im = values[slice][row][2*column+1] and have exactly the same number of rows in every slice and exactly the same number of columns in in every row.The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
- Parameters:
values- The values to be filled into the new matrix.- Throws:
java.lang.IllegalArgumentException- if for any 1 <= slice < values.length: values[slice].length != values[slice-1].length .java.lang.IllegalArgumentException- if for any 1 <= row < values[0].length: values[slice][row].length != values[slice][row-1].length .
-
DenseDComplexMatrix3D
public DenseDComplexMatrix3D(DoubleMatrix3D realPart)
Constructs a matrix with the same size as realPart matrix and fills the real part of this matrix with elements of realPart.- Parameters:
realPart- a real matrix whose elements become a real part of this matrix- Throws:
java.lang.IllegalArgumentException- if (double)slices*columns*rows > Integer.MAX_VALUE.java.lang.IllegalArgumentException- if slices<0 || rows<0 || columns<0.
-
DenseDComplexMatrix3D
public DenseDComplexMatrix3D(int slices, int rows, int columns)Constructs a matrix with a given number of slices, rows and columns. All entries are initially 0.- 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.- Throws:
java.lang.IllegalArgumentException- if (double)slices*columns*rows > Integer.MAX_VALUE.java.lang.IllegalArgumentException- if slices<0 || rows<0 || columns<0.
-
DenseDComplexMatrix3D
public DenseDComplexMatrix3D(int slices, int rows, int columns, double[] elements, int sliceZero, int rowZero, int columnZero, int sliceStride, int rowStride, int columnStride, boolean isNoView)Constructs a matrix with the given parameters.- 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.elements- the cells.sliceZero- the position of the first element.rowZero- the position of the first element.columnZero- the position of the first element.sliceStride- the number of elements between two slices, i.e. index(k+1,i,j)-index(k,i,j).rowStride- the number of elements between two rows, i.e. index(k,i+1,j)-index(k,i,j).columnStride- the number of elements between two columns, i.e. index(k,i,j+1)-index(k,i,j).isNoView- if false then the view is constructed- Throws:
java.lang.IllegalArgumentException- if (double)slices*columns*rows > Integer.MAX_VALUE.java.lang.IllegalArgumentException- if slices<0 || rows<0 || columns<0.
-
-
Method Detail
-
aggregate
public double[] aggregate(DComplexDComplexDComplexFunction aggr, DComplexDComplexFunction f)
Description copied from class:DComplexMatrix3DApplies a function to each cell and aggregates the results.- Overrides:
aggregatein classDComplexMatrix3D- Parameters:
aggr- an aggregation function taking as first argument the current aggregation and as second argument the transformed current cell value.f- a function transforming the current cell value.- Returns:
- the aggregated measure.
- See Also:
DoubleFunctions
-
aggregate
public double[] aggregate(DComplexMatrix3D other, DComplexDComplexDComplexFunction aggr, DComplexDComplexDComplexFunction f)
Description copied from class:DComplexMatrix3DApplies a function to each corresponding cell of two matrices and aggregates the results.- Overrides:
aggregatein classDComplexMatrix3Daggr- an aggregation function taking as first argument the current aggregation and as second argument the transformed current cell values.f- a function transforming the current cell values.- Returns:
- the aggregated measure.
- See Also:
DoubleFunctions
-
assign
public DComplexMatrix3D assign(DComplexDComplexFunction function)
Description copied from class:DComplexMatrix3DAssigns the result of a function to each cell.- Overrides:
assignin classDComplexMatrix3D- Parameters:
function- a function object taking as argument the current cell's value.- Returns:
- this (for convenience only).
- See Also:
DComplexFunctions
-
assign
public DComplexMatrix3D assign(DComplexProcedure cond, DComplexDComplexFunction f)
Description copied from class:DComplexMatrix3DAssigns the result of a function to all cells that satisfy a condition.- Overrides:
assignin classDComplexMatrix3D- Parameters:
cond- a condition.f- a function object.- Returns:
- this (for convenience only).
- See Also:
DComplexFunctions
-
assign
public DComplexMatrix3D assign(DComplexProcedure cond, double[] value)
Description copied from class:DComplexMatrix3DAssigns a value to all cells that satisfy a condition.- Overrides:
assignin classDComplexMatrix3D- Parameters:
cond- a condition.value- a value (re=value[0], im=value[1]).- Returns:
- this (for convenience only).
-
assign
public DComplexMatrix3D assign(DComplexRealFunction function)
Description copied from class:DComplexMatrix3DAssigns the result of a function to the real part of the receiver. The imaginary part of the receiver is reset to zero.- Overrides:
assignin classDComplexMatrix3D- Parameters:
function- a function object taking as argument the current cell's value.- Returns:
- this (for convenience only).
- See Also:
DComplexFunctions
-
assign
public DComplexMatrix3D assign(DComplexMatrix3D source)
Description copied from class:DComplexMatrix3DReplaces all cell values of the receiver with the values of another matrix. Both matrices must have the same number of slices, rows and columns. If both matrices share the same cells (as is the case if they are views derived from the same matrix) and intersect in an ambiguous way, then replaces as if using an intermediate auxiliary deep copy of other.- Overrides:
assignin classDComplexMatrix3D- Parameters:
source- the source matrix to copy from (may be identical to the receiver).- Returns:
- this (for convenience only).
-
assign
public DComplexMatrix3D assign(DComplexMatrix3D y, DComplexDComplexDComplexFunction function)
Description copied from class:DComplexMatrix3DAssigns the result of a function to each cell.- Overrides:
assignin classDComplexMatrix3D- Parameters:
y- the secondary matrix to operate on.function- a function object taking as first argument the current cell's value of this, and as second argument the current cell's value of y,- Returns:
- this (for convenience only).
- See Also:
DComplexFunctions
-
assign
public DComplexMatrix3D assign(double re, double im)
Description copied from class:DComplexMatrix3DSets all cells to the state specified by re and im.- Overrides:
assignin classDComplexMatrix3D- Parameters:
re- the real part of the value to be filled into the cells.im- the imagiary part of the value to be filled into the cells.- Returns:
- this (for convenience only).
-
assign
public DComplexMatrix3D assign(double[] values)
Description copied from class:DComplexMatrix3DSets all cells to the state specified by values. values is required to have the form re = values[slice*silceStride+row*rowStride+2*column], im = values[slice*silceStride+row*rowStride+2*column+1] and have exactly the same number of slices, rows and columns as the receiver.The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
- Overrides:
assignin classDComplexMatrix3D- Parameters:
values- the values to be filled into the cells.- Returns:
- this (for convenience only).
-
assign
public DComplexMatrix3D assign(double[][][] values)
Description copied from class:DComplexMatrix3DSets all cells to the state specified by values. values is required to have the form re = values[slice][row][2*column], im = values[slice][row][2*column+1] and have exactly the same number of slices, rows and columns as the receiver.The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
- Overrides:
assignin classDComplexMatrix3D- Parameters:
values- the values to be filled into the cells.- Returns:
- this (for convenience only).
-
assignImaginary
public DComplexMatrix3D assignImaginary(DoubleMatrix3D other)
Description copied from class:DComplexMatrix3DReplaces imaginary part of the receiver with the values of another real matrix. The real part of the receiver remains unchanged. Both matrices must have the same size.- Overrides:
assignImaginaryin classDComplexMatrix3D- Parameters:
other- the source matrix to copy from- Returns:
- this (for convenience only).
-
assignReal
public DComplexMatrix3D assignReal(DoubleMatrix3D other)
Description copied from class:DComplexMatrix3DReplaces real part of the receiver with the values of another real matrix. The imaginary part of the receiver remains unchanged. Both matrices must have the same size.- Overrides:
assignRealin classDComplexMatrix3D- Parameters:
other- the source matrix to copy from- Returns:
- this (for convenience only).
-
cardinality
public int cardinality()
Description copied from class:DComplexMatrix3DReturns the number of cells having non-zero values; ignores tolerance.- Overrides:
cardinalityin classDComplexMatrix3D- Returns:
- the number of cells having non-zero values.
-
fft2Slices
public void fft2Slices()
Computes the 2D discrete Fourier transform (DFT) of each slice of this matrix.
-
fft3
public void fft3()
Computes the 3D discrete Fourier transform (DFT) of this matrix.
-
elements
public double[] elements()
Description copied from class:DComplexMatrix3DReturns the elements of this matrix.- Specified by:
elementsin classDComplexMatrix3D- Returns:
- the elements
-
getImaginaryPart
public DoubleMatrix3D getImaginaryPart()
Description copied from class:DComplexMatrix3DReturns the imaginary part of this matrix- Specified by:
getImaginaryPartin classDComplexMatrix3D- Returns:
- the imaginary part
-
getNonZeros
public void getNonZeros(IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList, java.util.ArrayList<double[]> valueList)
Description copied from class:DComplexMatrix3DFills the coordinates and values of cells having non-zero values into the specified lists. Fills into the lists, starting at index 0. After this call returns the specified lists all have a new size, the number of non-zero values.In general, fill order is unspecified. This implementation fill like: for (slice = 0..slices-1) for (row = 0..rows-1) for (column = 0..colums-1) do ... . However, subclasses are free to us any other order, even an order that may change over time as cell values are changed. (Of course, result lists indexes are guaranteed to correspond to the same cell).
- Overrides:
getNonZerosin classDComplexMatrix3D- Parameters:
sliceList- the list to be filled with slice indexes, can have any size.rowList- the list to be filled with row indexes, can have any size.columnList- the list to be filled with column indexes, can have any size.valueList- the list to be filled with values, can have any size.
-
getQuick
public double[] getQuick(int slice, int row, int column)Description copied from class:DComplexMatrix3DReturns 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 classDComplexMatrix3D- 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.
-
getRealPart
public DoubleMatrix3D getRealPart()
Description copied from class:DComplexMatrix3DReturns the real part of this matrix- Specified by:
getRealPartin classDComplexMatrix3D- Returns:
- the real part
-
ifft2Slices
public void ifft2Slices(boolean scale)
Computes the 2D inverse of the discrete Fourier transform (IDFT) of each slice of this matrix.- Parameters:
scale- if true then scaling is performed
-
ifft3
public void ifft3(boolean scale)
Computes the 3D inverse of the discrete Fourier transform (IDFT) of this matrix.- Parameters:
scale- if true then scaling is performed
-
like
public DComplexMatrix3D like(int slices, int rows, int columns)
Description copied from class:DComplexMatrix3DConstruct 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 DenseComplexMatrix3D the new matrix must also be of type DenseComplexMatrix3D. In general, the new matrix should have internal parametrization as similar as possible.- Specified by:
likein classDComplexMatrix3D- 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.
-
like2D
public DComplexMatrix2D like2D(int rows, int columns)
Description copied from class:DComplexMatrix3DConstruct 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 DenseDComplexMatrix3D the new matrix must also be of type DenseDComplexMatrix2D, if the receiver is an instance of type SparseDComplexMatrix3D the new matrix must also be of type SparseDComplexMatrix2D, etc.- Specified by:
like2Din classDComplexMatrix3D- 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.
-
setQuick
public void setQuick(int slice, int row, int column, double re, double im)Description copied from class:DComplexMatrix3DSets 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 classDComplexMatrix3D- Parameters:
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.
-
setQuick
public void setQuick(int slice, int row, int column, double[] value)Description copied from class:DComplexMatrix3DSets 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 classDComplexMatrix3D- 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.
-
toArray
public double[][][] toArray()
Description copied from class:DComplexMatrix3DConstructs and returns a 3-dimensional array containing the cell values. The returned array values has the form values[slice][row][column] and has the same number of slices, rows and columns as the receiver.The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
- Overrides:
toArrayin classDComplexMatrix3D- Returns:
- an array filled with the values of the cells.
-
vectorize
public DComplexMatrix1D vectorize()
Description copied from class:DComplexMatrix3DReturns a vector obtained by stacking the columns of each slice of the matrix on top of one another.- Specified by:
vectorizein classDComplexMatrix3D- Returns:
- a vector obtained by stacking the columns of each slice of the matrix on top of one another.
-
zSum
public double[] zSum()
Description copied from class:DComplexMatrix3DReturns the sum of all cells; Sum( x[i,j,k] ).- Overrides:
zSumin classDComplexMatrix3D- Returns:
- the sum.
-
index
public long index(int slice, int row, int column)Description copied from class:AbstractMatrix3DReturns the position of the given coordinate within the (virtual or non-virtual) internal 1-dimensional array.- Overrides:
indexin classAbstractMatrix3D- Parameters:
slice- the index of the slice-coordinate.row- the index of the row-coordinate.column- the index of the third-coordinate.
-
-
DMelt 3.0 © DataMelt by jWork.ORG