Uses of Interface
org.jblas.ranges.Range
Packages that use Range
Package
Description
Main linear algebra package.
Provide ways to specify indices ranges.
-
Uses of Range in org.jblas
Modifier and TypeMethodDescriptionGet elements from specified rows and columns.Get elements from specified rows and columns.DoubleMatrix.getColumns
(Range indices) DoubleMatrix.getColumns
(Range indices, DoubleMatrix result) Get whole columns as specified by Range.FloatMatrix.getColumns
(Range indices) FloatMatrix.getColumns
(Range indices, FloatMatrix result) Get whole columns as specified by Range.DoubleMatrix.getRows
(Range indices, DoubleMatrix result) FloatMatrix.getRows
(Range indices, FloatMatrix result) DoubleMatrix.put
(Range rs, Range cs, DoubleMatrix x) Put a matrix into specified indices.FloatMatrix.put
(Range rs, Range cs, FloatMatrix x) Put a matrix into specified indices. -
Uses of Range in org.jblas.ranges
Classes in org.jblas.ranges that implement RangeModifier and TypeClassDescriptionclass
A range over all available indices.class
Range which varies over pre-specified indices.class
Range which varies from a given interval.class
A PointRange is a range which only has a single point.Methods in org.jblas.ranges that return RangeModifier and TypeMethodDescriptionstatic Range
RangeUtils.all()
static Range
RangeUtils.find
(DoubleMatrix is) static Range
RangeUtils.indices
(int[] is) static Range
RangeUtils.indices
(DoubleMatrix is) static Range
RangeUtils.interval
(int a, int b) static Range
RangeUtils.point
(int i) Construct point range (constant range) with given index.