Documentation of 'cern.colt.matrix.tfcomplex.impl.SparseFComplexMatrix1D' Java class
SparseFComplexMatrix1D
cern.colt.matrix.tfcomplex.impl

Class SparseFComplexMatrix1D

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable


    public class SparseFComplexMatrix1D
    extends FComplexMatrix1D
    Sparse hashed 1-d matrix (aka vector) holding complex elements. This implementation uses ConcurrentHashMap
    See Also:
    Serialized Form
    • Constructor Detail

      • SparseFComplexMatrix1D

        public SparseFComplexMatrix1D(float[] values)
        Constructs a matrix with a copy of the given values. 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.
      • SparseFComplexMatrix1D

        public SparseFComplexMatrix1D(int size)
        Constructs a matrix with a given number of cells.
        Parameters:
        size - the number of cells the matrix shall have.
        Throws:
        java.lang.IllegalArgumentException - if size<0.
    • Method Detail

      • assign

        public FComplexMatrix1D assign(float[] value)
        Description copied from class: FComplexMatrix1D
        Sets all cells to the state specified by values. values is required to have the same number of cells as the receiver. Complex data is represented by 2 float values in sequence: the real and imaginary parts, i.e. input array must be of size 2*size().

        The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.

        Overrides:
        assign in class FComplexMatrix1D
        Parameters:
        value - the values to be filled into the cells.
        Returns:
        this (for convenience only).
      • cardinality

        public int cardinality()
        Description copied from class: FComplexMatrix1D
        Returns the number of cells having non-zero values; ignores tolerance.
        Overrides:
        cardinality in class FComplexMatrix1D
        Returns:
        the number of cells having non-zero values.
      • getQuick

        public float[] getQuick(int index)
        Description copied from class: FComplexMatrix1D
        Returns the matrix cell value at coordinate index.

        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): index<0 || index>=size().

        Specified by:
        getQuick in class FComplexMatrix1D
        Parameters:
        index - the index of the cell.
        Returns:
        the value of the specified cell.
      • elements

        public java.util.concurrent.ConcurrentHashMap<java.lang.Long,float[]> elements()
        Description copied from class: FComplexMatrix1D
        Returns the elements of this matrix.
        Specified by:
        elements in class FComplexMatrix1D
        Returns:
        the elements
      • index

        public long index(int rank)
        Description copied from class: AbstractMatrix1D
        Returns the position of the element with the given relative rank within the (virtual or non-virtual) internal 1-dimensional array. You may want to override this method for performance.
        Overrides:
        index in class AbstractMatrix1D
        Parameters:
        rank - the rank of the element.
      • like

        public FComplexMatrix1D like(int size)
        Description copied from class: FComplexMatrix1D
        Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size. For example, if the receiver is an instance of type DenseFComplexMatrix1D the new matrix must also be of type DenseFComplexMatrix1D. In general, the new matrix should have internal parametrization as similar as possible.
        Specified by:
        like in class FComplexMatrix1D
        Parameters:
        size - the number of cell the matrix shall have.
        Returns:
        a new empty matrix of the same dynamic type.
      • like2D

        public FComplexMatrix2D like2D(int rows,
                                       int columns)
        Description copied from class: FComplexMatrix1D
        Construct and returns a new 2-d matrix of the corresponding dynamic type, entirely independent of the receiver. For example, if the receiver is an instance of type DenseFComplexMatrix1D the new matrix must be of type DenseFComplexMatrix2D.
        Specified by:
        like2D in class FComplexMatrix1D
        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.
      • reshape

        public FComplexMatrix2D reshape(int rows,
                                        int columns)
        Description copied from class: FComplexMatrix1D
        Returns new FloatMatrix2D of size rows x columns whose elements are taken column-wise from this matrix.
        Specified by:
        reshape in class FComplexMatrix1D
        Parameters:
        rows - number of rows
        columns - number of columns
        Returns:
        new 2D matrix with columns being the elements of this matrix.
      • reshape

        public FComplexMatrix3D reshape(int slices,
                                        int rows,
                                        int columns)
        Description copied from class: FComplexMatrix1D
        Returns new FloatMatrix3D of size slices x rows x columns, whose elements are taken column-wise from this matrix.
        Specified by:
        reshape in class FComplexMatrix1D
        rows - number of rows
        columns - number of columns
        Returns:
        new 2D matrix with columns being the elements of this matrix.
      • setQuick

        public void setQuick(int index,
                             float[] value)
        Description copied from class: FComplexMatrix1D
        Sets the matrix cell at coordinate index 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): index<0 || index>=size().

        Specified by:
        setQuick in class FComplexMatrix1D
        Parameters:
        index - the index of the cell.
        value - the value to be filled into the specified cell (re=value[0], im=value[1]).
      • setQuick

        public void setQuick(int index,
                             float re,
                             float im)
        Description copied from class: FComplexMatrix1D
        Sets the matrix cell at coordinate index 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): index<0 || index>=size().

        Specified by:
        setQuick in class FComplexMatrix1D
        Parameters:
        index - the index of the cell.
        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.

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.