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 DoubleGridModifier and TypeClassDescriptionclassA specializedDoubleArrayGridused in a mathematical context.Constructors in civitas.celestis.math.matrix with parameters of type DoubleGrid -
Uses of DoubleGrid in civitas.celestis.util.grid
Classes in civitas.celestis.util.grid that implement DoubleGridModifier and TypeClassDescriptionclassA static grid implemented using primitive arrays.Methods in civitas.celestis.util.grid that return DoubleGridModifier and TypeMethodDescriptionDoubleArrayGrid.map(DoubleUnaryOperator f) Applies the provided mapper functionfto 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 functionfto 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 functionfto 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 functionfto 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 functionfto 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 functionfto 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 functionfto 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 gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.DoubleGrid.merge(DoubleGrid g, DoubleBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.static DoubleGridDoubleGrid.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 DoubleGridModifier and TypeMethodDescriptionstatic intGrids.hash(DoubleGrid g) Hashes a grid.DoubleArrayGrid.merge(DoubleGrid g, DoubleBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.DoubleGrid.merge(DoubleGrid g, DoubleBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.voidDoubleArrayGrid.setRange(int r1, int c1, int r2, int c2, DoubleGrid g) Sets a sub-grid of this grid, copying values from the provided sub-gridg.voidDoubleGrid.setRange(int r1, int c1, int r2, int c2, DoubleGrid g) Sets a sub-grid of this grid, copying values from the provided sub-gridg.Constructors in civitas.celestis.util.grid with parameters of type DoubleGrid