Class WrapperDComplexMatrix2D
- java.lang.Object
-
- cern.colt.PersistentObject
-
- cern.colt.matrix.AbstractMatrix
-
- cern.colt.matrix.AbstractMatrix2D
-
- cern.colt.matrix.tdcomplex.DComplexMatrix2D
-
- cern.colt.matrix.tdcomplex.impl.WrapperDComplexMatrix2D
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
- Direct Known Subclasses:
- DenseLargeDComplexMatrix2D, DiagonalDComplexMatrix2D, SparseCCDComplexMatrix2D, SparseCCMDComplexMatrix2D, SparseRCDComplexMatrix2D, SparseRCMDComplexMatrix2D
public class WrapperDComplexMatrix2D extends DComplexMatrix2D
2-d matrix holding complex elements; either a view wrapping another matrix or a matrix whose views are wrappers.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description WrapperDComplexMatrix2D(DComplexMatrix2D newContent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description DComplexMatrix2Dassign(double[] values)Sets all cells to the state specified by values.DComplexMatrix2Dassign(float[] values)Sets all cells to the state specified by values.java.lang.Objectelements()Returns the elements of this matrix.booleanequals(double[] value)Returns whether all cells are equal to the given value.booleanequals(java.lang.Object obj)Compares this object against the specified object.voidfft2()Computes the 2D discrete Fourier transform (DFT) of this matrix.voidfftColumns()Computes the discrete Fourier transform (DFT) of each column of this matrix.voidfftRows()Computes the discrete Fourier transform (DFT) of each row of this matrix.DoubleMatrix2DgetImaginaryPart()Returns the imaginary part of this matrixdouble[]getQuick(int row, int column)Returns the matrix cell value at coordinate [row,column].DoubleMatrix2DgetRealPart()Returns the real part of this matrixvoidifft2(boolean scale)Computes the 2D inverse of the discrete Fourier transform (IDFT) of this matrix.voidifftColumns(boolean scale)Computes the inverse of the discrete Fourier transform (DFT) of each column of this matrix.voidifftRows(boolean scale)Computes the inverse of the discrete Fourier transform (DFT) of each row of this matrix.DComplexMatrix2Dlike(int rows, int columns)Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns.DComplexMatrix1Dlike1D(int size)Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.voidsetQuick(int row, int column, double[] value)Sets the matrix cell at coordinate [row,column] to the specified value.voidsetQuick(int row, int column, double re, double im)Sets the matrix cell at coordinate [row,column] to the specified value.DComplexMatrix1Dvectorize()Returns a vector obtained by stacking the columns of this matrix on top of one another.DComplexMatrix1DviewColumn(int column)Constructs and returns a new slice view representing the rows of the given column.DComplexMatrix2DviewColumnFlip()Constructs and returns a new flip view along the column axis.DComplexMatrix2DviewDice()Constructs and returns a new dice (transposition) view; Swaps axes; example: 3 x 4 matrix --> 4 x 3 matrix.DComplexMatrix2DviewPart(int row, int column, int height, int width)Constructs and returns a new sub-range view that is a height x width sub matrix starting at [row,column].DComplexMatrix1DviewRow(int row)Constructs and returns a new slice view representing the columns of the given row.DComplexMatrix2DviewRowFlip()Constructs and returns a new flip view along the row axis.DComplexMatrix2DviewSelection(int[] rowIndexes, int[] columnIndexes)Constructs and returns a new selection view that is a matrix holding the indicated cells.DComplexMatrix2DviewStrides(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.tdcomplex.DComplexMatrix2D
aggregate, aggregate, assign, assign, assign, assign, assign, assign, assign, assign, assign, assignImaginary, assignReal, cardinality, copy, forEachNonZero, get, getConjugateTranspose, getNonZeros, like, set, set, toArray, toString, toString, viewSelection, zMult, zMult, zMult, zMult, zSum
-
Methods inherited from class cern.colt.matrix.AbstractMatrix2D
checkShape, checkShape, columns, columnStride, index, rows, rowStride, size, toStringShort
-
Methods inherited from class cern.colt.matrix.AbstractMatrix
ensureCapacity, isView, trimToSize
-
Methods inherited from class cern.colt.PersistentObject
clone
-
-
-
-
Constructor Detail
-
WrapperDComplexMatrix2D
public WrapperDComplexMatrix2D(DComplexMatrix2D newContent)
-
-
Method Detail
-
assign
public DComplexMatrix2D assign(double[] values)
Description copied from class:DComplexMatrix2DSets all cells to the state specified by values. values is required to have the form re = values[row*rowStride+column*columnStride]; im = values[row*rowStride+column*columnStride+1] and have exactly the same number of 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 classDComplexMatrix2D- Parameters:
values- the values to be filled into the cells.- Returns:
- this (for convenience only).
-
assign
public DComplexMatrix2D assign(float[] values)
Description copied from class:DComplexMatrix2DSets all cells to the state specified by values. values is required to have the form re = values[row*rowStride+column*columnStride]; im = values[row*rowStride+column*columnStride+1] and have exactly the same number of 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 classDComplexMatrix2D- Parameters:
values- the values to be filled into the cells.- Returns:
- this (for convenience only).
-
elements
public java.lang.Object elements()
Description copied from class:DComplexMatrix2DReturns the elements of this matrix.- Specified by:
elementsin classDComplexMatrix2D- Returns:
- the elements
-
equals
public boolean equals(double[] value)
Description copied from class:DComplexMatrix2DReturns whether all cells are equal to the given value.- Overrides:
equalsin classDComplexMatrix2D- Parameters:
value- the value to test against.- Returns:
- true if all cells are equal to the given value, false otherwise.
-
equals
public boolean equals(java.lang.Object obj)
Description copied from class:DComplexMatrix2DCompares this object against the specified object. The result istrueif and only if the argument is notnulland is at least aDoubleMatrix2Dobject that has the same number of columns and rows as the receiver and has exactly the same values at the same coordinates.- Overrides:
equalsin classDComplexMatrix2D- Parameters:
obj- the object to compare with.- Returns:
trueif the objects are the same;falseotherwise.
-
getQuick
public double[] getQuick(int row, int column)Description copied from class:DComplexMatrix2DReturns the matrix cell value at coordinate [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): 0 <= column < columns() && 0 <= row < rows().
- Specified by:
getQuickin classDComplexMatrix2D- Parameters:
row- the index of the row-coordinate.column- the index of the column-coordinate.- Returns:
- the value at the specified coordinate.
-
like
public DComplexMatrix2D like(int rows, int columns)
Description copied from class:DComplexMatrix2DConstruct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns. For example, if the receiver is an instance of type DenseComplexMatrix2D the new matrix must also be of type DenseComplexMatrix2D. In general, the new matrix should have internal parametrization as similar as possible.- Specified by:
likein classDComplexMatrix2D- Parameters:
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.
-
like1D
public DComplexMatrix1D like1D(int size)
Description copied from class:DComplexMatrix2DConstruct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver. For example, if the receiver is an instance of type DenseComplexMatrix2D the new matrix must be of type DenseComplexMatrix1D.- Specified by:
like1Din classDComplexMatrix2D- Parameters:
size- the number of cells the matrix shall have.- Returns:
- a new matrix of the corresponding dynamic type.
-
fft2
public void fft2()
Computes the 2D discrete Fourier transform (DFT) of this matrix.
-
fftColumns
public void fftColumns()
Computes the discrete Fourier transform (DFT) of each column of this matrix.
-
fftRows
public void fftRows()
Computes the discrete Fourier transform (DFT) of each row of this matrix.
-
ifftColumns
public void ifftColumns(boolean scale)
Computes the inverse of the discrete Fourier transform (DFT) of each column of this matrix.
-
ifftRows
public void ifftRows(boolean scale)
Computes the inverse of the discrete Fourier transform (DFT) of each row of this matrix.
-
ifft2
public void ifft2(boolean scale)
Computes the 2D inverse of the discrete Fourier transform (IDFT) of this matrix.- Parameters:
scale- if true then scaling is performed
-
setQuick
public void setQuick(int row, int column, double[] value)Description copied from class:DComplexMatrix2DSets the matrix cell at coordinate [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): 0 <= column < columns() && 0 <= row < rows().
- Specified by:
setQuickin classDComplexMatrix2D- Parameters:
row- the index of the row-coordinate.column- the index of the column-coordinate.value- the value to be filled into the specified cell.
-
setQuick
public void setQuick(int row, int column, double re, double im)Description copied from class:DComplexMatrix2DSets the matrix cell at coordinate [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): 0 <= column < columns() && 0 <= row < rows().
- Specified by:
setQuickin classDComplexMatrix2D- Parameters:
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.
-
vectorize
public DComplexMatrix1D vectorize()
Description copied from class:DComplexMatrix2DReturns a vector obtained by stacking the columns of this matrix on top of one another.- Specified by:
vectorizein classDComplexMatrix2D- Returns:
- a vector of columns of this matrix.
-
viewColumn
public DComplexMatrix1D viewColumn(int column)
Description copied from class:DComplexMatrix2DConstructs and returns a new slice view representing the 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 ( viewPart(...)), then apply this method to the sub-range view.- Overrides:
viewColumnin classDComplexMatrix2D- Parameters:
column- the column to fix.- Returns:
- a new slice view.
- See Also:
DComplexMatrix2D.viewRow(int)
-
viewColumnFlip
public DComplexMatrix2D viewColumnFlip()
Description copied from class:DComplexMatrix2DConstructs and returns a new flip view along 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 classDComplexMatrix2D- Returns:
- a new flip view.
- See Also:
DComplexMatrix2D.viewRowFlip()
-
viewDice
public DComplexMatrix2D viewDice()
Description copied from class:DComplexMatrix2DConstructs and returns a new dice (transposition) view; Swaps axes; example: 3 x 4 matrix --> 4 x 3 matrix. The view has both dimensions exchanged; what used to be columns become rows, what used to be rows become columns. This is a zero-copy transposition, taking O(1), i.e. constant time. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa. Use idioms like result = viewDice(A).copy() to generate an independent transposed matrix.- Overrides:
viewDicein classDComplexMatrix2D- Returns:
- a new dice view.
-
viewPart
public DComplexMatrix2D viewPart(int row, int column, int height, int width)
Description copied from class:DComplexMatrix2DConstructs and returns a new sub-range view that is a height x width sub matrix starting at [row,column]. Operations on the returned view can only be applied to the restricted range. Any attempt to access coordinates not contained in the view will throw an IndexOutOfBoundsException.Note that the view is really just a range restriction: The returned matrix is backed by this matrix, so changes in the returned matrix are reflected in this matrix, and vice-versa.
The view contains the cells from [row,column] to [row+height-1,column+width-1], all inclusive. and has view.rows() == height; view.columns() == width;. A view's legal coordinates are again zero based, as usual. In other words, legal coordinates of the view range from [0,0] to [view.rows()-1==height-1,view.columns()-1==width-1]. As usual, any attempt to access a cell at a coordinate column<0 || column>=view.columns() || row<0 || row>=view.rows() will throw an IndexOutOfBoundsException.
- Overrides:
viewPartin classDComplexMatrix2D- Parameters:
row- The index of the row-coordinate.column- The index of the column-coordinate.height- The height of the box.width- The width of the box.- Returns:
- the new view.
-
viewRow
public DComplexMatrix1D viewRow(int row)
Description copied from class:DComplexMatrix2DConstructs and returns a new slice view representing the 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 ( viewPart(...)), then apply this method to the sub-range view.- Overrides:
viewRowin classDComplexMatrix2D- Parameters:
row- the row to fix.- Returns:
- a new slice view.
- See Also:
DComplexMatrix2D.viewColumn(int)
-
viewRowFlip
public DComplexMatrix2D viewRowFlip()
Description copied from class:DComplexMatrix2DConstructs and returns a new flip view along 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 classDComplexMatrix2D- Returns:
- a new flip view.
- See Also:
DComplexMatrix2D.viewColumnFlip()
-
viewSelection
public DComplexMatrix2D viewSelection(int[] rowIndexes, int[] columnIndexes)
Description copied from class:DComplexMatrix2DConstructs and returns a new selection view that is a matrix holding the indicated cells. There holds view.rows() == rowIndexes.length, view.columns() == columnIndexes.length and view.get(i,j) == this.get(rowIndexes[i],columnIndexes[j]). Indexes can occur multiple times and can be in arbitrary order. 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.To indicate "all" rows or "all columns", simply set the respective parameter
- Overrides:
viewSelectionin classDComplexMatrix2D- Parameters:
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 DComplexMatrix2D viewStrides(int _rowStride, int _columnStride)
Description copied from class:DComplexMatrix2DConstructs and returns a new stride view which is a sub matrix consisting of every i-th cell. More specifically, the view has this.rows()/rowStride rows and this.columns()/columnStride columns holding cells this.get(i*rowStride,j*columnStride) for all 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 classDComplexMatrix2D- Parameters:
_rowStride- the row step factor._columnStride- the column step factor.- Returns:
- a new view.
-
getImaginaryPart
public DoubleMatrix2D getImaginaryPart()
Description copied from class:DComplexMatrix2DReturns the imaginary part of this matrix- Specified by:
getImaginaryPartin classDComplexMatrix2D- Returns:
- the imaginary part
-
getRealPart
public DoubleMatrix2D getRealPart()
Description copied from class:DComplexMatrix2DReturns the real part of this matrix- Specified by:
getRealPartin classDComplexMatrix2D- Returns:
- the real part
-
-
DMelt 3.0 © DataMelt by jWork.ORG