Uses of Interface
org.jblas.ranges.Range

Packages that use Range
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
 FloatMatrix FloatMatrix.get(int r, Range cs)
           
 DoubleMatrix DoubleMatrix.get(int r, Range cs)
           
 FloatMatrix FloatMatrix.get(Range rs, int c)
           
 DoubleMatrix DoubleMatrix.get(Range rs, int c)
           
 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.
 FloatMatrix FloatMatrix.getRows(Range indices)
           
 DoubleMatrix DoubleMatrix.getRows(Range indices)
           
 DoubleMatrix DoubleMatrix.getRows(Range indices, DoubleMatrix result)
           
 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
 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
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.
 



© 2008-2010 by Mikio L. Braun and contributors