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 TypeClassDescriptionclassA range over all available indices.classRange which varies over pre-specified indices.classRange which varies from a given interval.classA PointRange is a range which only has a single point.Methods in org.jblas.ranges that return RangeModifier and TypeMethodDescriptionstatic RangeRangeUtils.all()static RangeRangeUtils.find(DoubleMatrix is) static RangeRangeUtils.indices(int[] is) static RangeRangeUtils.indices(DoubleMatrix is) static RangeRangeUtils.interval(int a, int b) static RangeRangeUtils.point(int i) Construct point range (constant range) with given index.