Uses of Interface
org.jblas.ranges.Range
-
Packages that use Range Package Description org.jblas Main linear algebra package.org.jblas.ranges Provide ways to specify indices ranges. -
-
Uses of Range in org.jblas
Methods in org.jblas with parameters of type Range Modifier and Type Method Description DoubleMatrix
DoubleMatrix. get(int r, Range cs)
DoubleMatrix
DoubleMatrix. get(Range rs, int c)
DoubleMatrix
DoubleMatrix. get(Range rs, Range cs)
Get elements from specified rows and columns.FloatMatrix
FloatMatrix. get(int r, Range cs)
FloatMatrix
FloatMatrix. get(Range rs, int c)
FloatMatrix
FloatMatrix. get(Range rs, Range cs)
Get elements from specified rows and columns.DoubleMatrix
DoubleMatrix. getColumns(Range indices)
DoubleMatrix
DoubleMatrix. getColumns(Range indices, DoubleMatrix result)
Get whole columns as specified by Range.FloatMatrix
FloatMatrix. getColumns(Range indices)
FloatMatrix
FloatMatrix. getColumns(Range indices, FloatMatrix result)
Get whole columns as specified by Range.DoubleMatrix
DoubleMatrix. getRows(Range indices)
DoubleMatrix
DoubleMatrix. getRows(Range indices, DoubleMatrix result)
FloatMatrix
FloatMatrix. getRows(Range indices)
FloatMatrix
FloatMatrix. getRows(Range indices, FloatMatrix result)
DoubleMatrix
DoubleMatrix. put(Range rs, Range cs, DoubleMatrix x)
Put a matrix into specified indices.FloatMatrix
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 Range Modifier and Type Class Description class
AllRange
A range over all available indices.class
IndicesRange
Range which varies over pre-specified indices.class
IntervalRange
Range which varies from a given interval.class
PointRange
A PointRange is a range which only has a single point.Methods in org.jblas.ranges that return Range Modifier and Type Method Description static 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.
-