Uses of Interface
civitas.celestis.util.grid.DoubleGrid

Packages that use DoubleGrid
  • Uses of DoubleGrid in civitas.celestis.math.matrix

    Classes in civitas.celestis.math.matrix that implement DoubleGrid
    Modifier and Type
    Class
    Description
    class 
    A specialized DoubleArrayGrid used in a mathematical context.
    Constructors in civitas.celestis.math.matrix with parameters of type DoubleGrid
    Modifier
    Constructor
    Description
     
    Creates a new matrix.
  • Uses of DoubleGrid in civitas.celestis.util.grid

    Classes in civitas.celestis.util.grid that implement DoubleGrid
    Modifier and Type
    Class
    Description
    class 
    A static grid implemented using primitive arrays.
    Methods in civitas.celestis.util.grid that return DoubleGrid
    Modifier and Type
    Method
    Description
    DoubleArrayGrid.map(DoubleUnaryOperator f)
    Applies the provided mapper function f to every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.
    DoubleGrid.map(DoubleUnaryOperator f)
    Applies the provided mapper function f to every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.
    ArrayGrid.mapToDouble(ToDoubleFunction<? super E> f)
    Applies the provided mapper function f to every element of this grid, then returns a new double grid whose values are populated from that of the provided function's return values.
    AtomicGrid.mapToDouble(ToDoubleFunction<? super E> f)
    Applies the provided mapper function f to every element of this grid, then returns a new double grid whose values are populated from that of the provided function's return values.
    Grid.mapToDouble(ToDoubleFunction<? super E> f)
    Applies the provided mapper function f to every element of this grid, then returns a new double grid whose values are populated from that of the provided function's return values.
    HashGrid.mapToDouble(ToDoubleFunction<? super E> f)
    Applies the provided mapper function f to every element of this grid, then returns a new double grid whose values are populated from that of the provided function's return values.
    SyncGrid.mapToDouble(ToDoubleFunction<? super E> f)
    Applies the provided mapper function f to every element of this grid, then returns a new double grid whose values are populated from that of the provided function's return values.
    DoubleArrayGrid.merge(DoubleGrid g, DoubleBinaryOperator f)
    Between this grid and the provided grid g, this applies the merger function f for each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger function f.
    Between this grid and the provided grid g, this applies the merger function f for each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger function f.
    static DoubleGrid
    DoubleGrid.of(double[][] values)
    Creates a new double grid from the provided two-dimensional array of values.
    DoubleArrayGrid.resize(int rows, int columns)
    Returns a resized grid, whose elements are populated from that of this grid's elements.
    DoubleGrid.resize(int rows, int columns)
    Returns a resized grid, whose elements are populated from that of this grid's elements.
    DoubleArrayGrid.subGrid(int r1, int c1, int r2, int c2)
    Returns a sub-grid of this grid, whose values are populated from that of this grid's elements within the specified range.
    DoubleGrid.subGrid(int r1, int c1, int r2, int c2)
    Returns a sub-grid of this grid, whose values are populated from that of this grid's elements within the specified range.
    DoubleArrayGrid.transpose()
    Returns the transpose of this grid.
    DoubleGrid.transpose()
    Returns the transpose of this grid.
    Methods in civitas.celestis.util.grid with parameters of type DoubleGrid
    Modifier and Type
    Method
    Description
    static int
    Grids.hash(DoubleGrid g)
    Hashes a grid.
    DoubleArrayGrid.merge(DoubleGrid g, DoubleBinaryOperator f)
    Between this grid and the provided grid g, this applies the merger function f for each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger function f.
    Between this grid and the provided grid g, this applies the merger function f for each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger function f.
    void
    DoubleArrayGrid.setRange(int r1, int c1, int r2, int c2, DoubleGrid g)
    Sets a sub-grid of this grid, copying values from the provided sub-grid g.
    void
    DoubleGrid.setRange(int r1, int c1, int r2, int c2, DoubleGrid g)
    Sets a sub-grid of this grid, copying values from the provided sub-grid g.
    Constructors in civitas.celestis.util.grid with parameters of type DoubleGrid
    Modifier
    Constructor
    Description
     
    Creates a new array grid.