Uses of Interface
org.jblas.la.ranges.Range

Packages that use Range
org.jblas.la Main linear algebra package. 
org.jblas.la.ranges Provide ways to specify indices ranges. 
 

Uses of Range in org.jblas.la
 

Methods in org.jblas.la with parameters of type Range
 FloatMatrix FloatMatrix.get(Range rs, Range cs)
          Get elements from specified rows and columns.
 DoubleMatrix DoubleMatrix.get(Range rs, Range cs)
          Get elements from specified rows and columns.
 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.la.ranges
 

Classes in org.jblas.la.ranges that implement Range
 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.la.ranges that return Range
static Range RangeUtils.all()
           
static Range RangeUtils.find(DoubleMatrix is)
           
static Range RangeUtils.indices(DoubleMatrix is)
           
static Range RangeUtils.indices(int[] is)
           
static Range RangeUtils.interval(int a, int b)
           
static Range RangeUtils.point(int i)
          Construct point range (constant range) with given index.
 



written by Mikio L. Braun and Johannes Schaback