public class FloatArrayBackedDataSource extends Object implements DataSource<float[]>
DataSource backed by a 2D array of floats.| Modifier and Type | Field and Description |
|---|---|
protected float[][] |
data |
protected Random |
rng |
| Constructor and Description |
|---|
FloatArrayBackedDataSource(float[][] data)
Construct with data
|
FloatArrayBackedDataSource(float[][] data,
Random rng)
Construct with data and a random generator for random sampling
|
| Modifier and Type | Method and Description |
|---|---|
float[][] |
createTemporaryArray(int size)
Create a temporary array suitable for use with the
DataSource.getRandomRows(Object[]) and DataSource.getData(int, int, Object[])
methods. |
float[] |
getData(int row)
Get the data for a given row
|
void |
getData(int startRow,
int stopRow,
float[][] output)
Get data between given rows.
|
void |
getRandomRows(float[][] output) |
Iterator<float[]> |
iterator() |
int |
numDimensions() |
int |
size() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEach, spliteratorpublic FloatArrayBackedDataSource(float[][] data)
data - the datapublic FloatArrayBackedDataSource(float[][] data, Random rng)
data - the datarng - the random generatorpublic final void getData(int startRow, int stopRow, float[][] output)
DataSourceDataSource.size().
data is guaranteed to have (stopRow - startRow) valid entriesgetData in interface DataSource<float[]>startRow - where to start (inclusive)stopRow - where to stop (exclusive)output - the array to fillpublic final void getRandomRows(float[][] output)
getRandomRows in interface DataSource<float[]>output - a random set of data. This array is guaranteed to be filled.public int numDimensions()
numDimensions in interface DataSource<float[]>public int size()
size in interface DataSource<float[]>public float[] getData(int row)
DataSourcegetData in interface DataSource<float[]>row - the row numberpublic float[][] createTemporaryArray(int size)
DataSourceDataSource.getRandomRows(Object[]) and DataSource.getData(int, int, Object[])
methods.createTemporaryArray in interface DataSource<float[]>size - the size of the array