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 DoubleMatrixDoubleMatrix. get(int r, Range cs)DoubleMatrixDoubleMatrix. get(Range rs, int c)DoubleMatrixDoubleMatrix. get(Range rs, Range cs)Get elements from specified rows and columns.FloatMatrixFloatMatrix. get(int r, Range cs)FloatMatrixFloatMatrix. get(Range rs, int c)FloatMatrixFloatMatrix. get(Range rs, Range cs)Get elements from specified rows and columns.DoubleMatrixDoubleMatrix. getColumns(Range indices)DoubleMatrixDoubleMatrix. getColumns(Range indices, DoubleMatrix result)Get whole columns as specified by Range.FloatMatrixFloatMatrix. getColumns(Range indices)FloatMatrixFloatMatrix. getColumns(Range indices, FloatMatrix result)Get whole columns as specified by Range.DoubleMatrixDoubleMatrix. getRows(Range indices)DoubleMatrixDoubleMatrix. getRows(Range indices, DoubleMatrix result)FloatMatrixFloatMatrix. getRows(Range indices)FloatMatrixFloatMatrix. getRows(Range indices, FloatMatrix result)DoubleMatrixDoubleMatrix. put(Range rs, Range cs, DoubleMatrix x)Put a matrix into specified indices.FloatMatrixFloatMatrix. 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 classAllRangeA range over all available indices.classIndicesRangeRange which varies over pre-specified indices.classIntervalRangeRange which varies from a given interval.classPointRangeA PointRange is a range which only has a single point.Methods in org.jblas.ranges that return Range Modifier and Type Method Description static 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.
-