|
Parallel Colt 0.9.4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcern.colt.PersistentObject
cern.colt.matrix.AbstractMatrix
cern.colt.matrix.AbstractMatrix2D
cern.colt.matrix.tdcomplex.DComplexMatrix2D
cern.colt.matrix.tdcomplex.impl.WrapperDComplexMatrix2D
public class WrapperDComplexMatrix2D
2-d matrix holding complex elements; either a view wrapping another matrix or a matrix whose views are wrappers.
Constructor Summary | |
---|---|
WrapperDComplexMatrix2D(DComplexMatrix2D newContent)
|
Method Summary | |
---|---|
DComplexMatrix2D |
assign(double[] values)
Sets all cells to the state specified by values. |
DComplexMatrix2D |
assign(float[] values)
Sets all cells to the state specified by values. |
Object |
elements()
Returns the elements of this matrix. |
boolean |
equals(double[] value)
Returns whether all cells are equal to the given value. |
boolean |
equals(Object obj)
Compares this object against the specified object. |
void |
fft2()
Computes the 2D discrete Fourier transform (DFT) of this matrix. |
void |
fftColumns()
Computes the discrete Fourier transform (DFT) of each column of this matrix. |
void |
fftRows()
Computes the discrete Fourier transform (DFT) of each row of this matrix. |
DoubleMatrix2D |
getImaginaryPart()
Returns the imaginary part of this matrix |
double[] |
getQuick(int row,
int column)
Returns the matrix cell value at coordinate [row,column]. |
DoubleMatrix2D |
getRealPart()
Returns the real part of this matrix |
void |
ifft2(boolean scale)
Computes the 2D inverse of the discrete Fourier transform (IDFT) of this matrix. |
void |
ifftColumns(boolean scale)
Computes the inverse of the discrete Fourier transform (DFT) of each column of this matrix. |
void |
ifftRows(boolean scale)
Computes the inverse of the discrete Fourier transform (DFT) of each row of this matrix. |
DComplexMatrix2D |
like(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. |
DComplexMatrix1D |
like1D(int size)
Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver. |
void |
setQuick(int row,
int column,
double[] value)
Sets the matrix cell at coordinate [row,column] to the specified value. |
void |
setQuick(int row,
int column,
double re,
double im)
Sets the matrix cell at coordinate [row,column] to the specified value. |
DComplexMatrix1D |
vectorize()
Returns a vector obtained by stacking the columns of this matrix on top of one another. |
DComplexMatrix1D |
viewColumn(int column)
Constructs and returns a new slice view representing the rows of the given column. |
DComplexMatrix2D |
viewColumnFlip()
Constructs and returns a new flip view along the column axis. |
DComplexMatrix2D |
viewDice()
Constructs and returns a new dice (transposition) view; Swaps axes; example: 3 x 4 matrix --> 4 x 3 matrix. |
DComplexMatrix2D |
viewPart(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]. |
DComplexMatrix1D |
viewRow(int row)
Constructs and returns a new slice view representing the columns of the given row. |
DComplexMatrix2D |
viewRowFlip()
Constructs and returns a new flip view along the row axis. |
DComplexMatrix2D |
viewSelection(int[] rowIndexes,
int[] columnIndexes)
Constructs and returns a new selection view that is a matrix holding the indicated cells. |
DComplexMatrix2D |
viewStrides(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 |
Methods inherited from class java.lang.Object |
---|
getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public WrapperDComplexMatrix2D(DComplexMatrix2D newContent)
Method Detail |
---|
public DComplexMatrix2D assign(double[] values)
DComplexMatrix2D
The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
assign
in class DComplexMatrix2D
values
- the values to be filled into the cells.
public DComplexMatrix2D assign(float[] values)
DComplexMatrix2D
The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
assign
in class DComplexMatrix2D
values
- the values to be filled into the cells.
public Object elements()
DComplexMatrix2D
elements
in class DComplexMatrix2D
public boolean equals(double[] value)
DComplexMatrix2D
equals
in class DComplexMatrix2D
value
- the value to test against.
public boolean equals(Object obj)
DComplexMatrix2D
true
if and only if the argument is not null
and is at least a DoubleMatrix2D
object that has the same
number of columns and rows as the receiver and has exactly the same
values at the same coordinates.
equals
in class DComplexMatrix2D
obj
- the object to compare with.
true
if the objects are the same; false
otherwise.public double[] getQuick(int row, int column)
DComplexMatrix2D
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().
getQuick
in class DComplexMatrix2D
row
- the index of the row-coordinate.column
- the index of the column-coordinate.
public DComplexMatrix2D like(int rows, int columns)
DComplexMatrix2D
like
in class DComplexMatrix2D
rows
- the number of rows the matrix shall have.columns
- the number of columns the matrix shall have.
public DComplexMatrix1D like1D(int size)
DComplexMatrix2D
like1D
in class DComplexMatrix2D
size
- the number of cells the matrix shall have.
public void fft2()
public void fftColumns()
public void fftRows()
public void ifftColumns(boolean scale)
public void ifftRows(boolean scale)
public void ifft2(boolean scale)
scale
- if true then scaling is performedpublic void setQuick(int row, int column, double[] value)
DComplexMatrix2D
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().
setQuick
in class DComplexMatrix2D
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 row, int column, double re, double im)
DComplexMatrix2D
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().
setQuick
in class DComplexMatrix2D
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()
DComplexMatrix2D
vectorize
in class DComplexMatrix2D
public DComplexMatrix1D viewColumn(int column)
DComplexMatrix2D
viewColumn
in class DComplexMatrix2D
column
- the column to fix.
DComplexMatrix2D.viewRow(int)
public DComplexMatrix2D viewColumnFlip()
DComplexMatrix2D
viewColumnFlip
in class DComplexMatrix2D
DComplexMatrix2D.viewRowFlip()
public DComplexMatrix2D viewDice()
DComplexMatrix2D
viewDice
in class DComplexMatrix2D
public DComplexMatrix2D viewPart(int row, int column, int height, int width)
DComplexMatrix2D
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.
viewPart
in class DComplexMatrix2D
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.
public DComplexMatrix1D viewRow(int row)
DComplexMatrix2D
viewRow
in class DComplexMatrix2D
row
- the row to fix.
DComplexMatrix2D.viewColumn(int)
public DComplexMatrix2D viewRowFlip()
DComplexMatrix2D
viewRowFlip
in class DComplexMatrix2D
DComplexMatrix2D.viewColumnFlip()
public DComplexMatrix2D viewSelection(int[] rowIndexes, int[] columnIndexes)
DComplexMatrix2D
To indicate "all" rows or "all columns", simply set the respective parameter
viewSelection
in class DComplexMatrix2D
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 DComplexMatrix2D viewStrides(int _rowStride, int _columnStride)
DComplexMatrix2D
viewStrides
in class DComplexMatrix2D
_rowStride
- the row step factor._columnStride
- the column step factor.
public DoubleMatrix2D getImaginaryPart()
DComplexMatrix2D
getImaginaryPart
in class DComplexMatrix2D
public DoubleMatrix2D getRealPart()
DComplexMatrix2D
getRealPart
in class DComplexMatrix2D
|
Parallel Colt 0.9.4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |