Package | Description |
---|---|
org.jblas |
Main linear algebra package.
|
org.jblas.ranges |
Provide ways to specify indices ranges.
|
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.
|
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.
|
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.
|
© 2008-2013 by Mikio L. Braun and contributors