public class FloatMatrixDataSparse extends FloatMatrixData
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
cols, matrixSI, rows| Constructor and Description |
|---|
FloatMatrixDataSparse(float[][] dataSI)
Create a vector with sparse data.
|
FloatMatrixDataSparse(float[] denseSI,
int rows,
int cols)
Create a vector with sparse data from an internal vector with dense data.
|
FloatMatrixDataSparse(float[] matrixSI,
long[] indices,
int length,
int rows,
int cols)
Create a vector with sparse data.
|
| Modifier and Type | Method and Description |
|---|---|
FloatMatrixDataSparse |
copy() |
void |
decrementBy(FloatMatrixData right)
Subtract a matrix from this matrix on a cell-by-cell basis.
|
void |
divideBy(FloatMatrixData right)
Divide the values of a matrix by the values of another matrix on a cell-by-cell basis.
|
boolean |
equals(Object obj) |
float[][] |
getDenseMatrixSI() |
double[][] |
getDoubleDenseMatrixSI() |
float |
getSI(int row,
int col) |
int |
hashCode() |
void |
incrementBy(FloatMatrixData right)
Add a matrix to this matrix on a cell-by-cell basis.
|
static FloatMatrixDataSparse |
instantiate(float[][] valuesSI)
Instantiate a FloatMatrixDataSparse from an array.
|
void |
multiplyBy(FloatMatrixData right)
Multiply a matrix with the values of another matrix on a cell-by-cell basis.
|
void |
setSI(int row,
int col,
float valueSI)
Sets a value at the [row, col] point in the matrix.
|
FloatMatrixDataDense |
toDense() |
cardinality, cols, decrementBy, divide, divideBy, getStorageType, incrementBy, instantiate, instantiate, isDense, isSparse, minus, multiplyBy, plus, rows, times, toSparse, toString, zSumpublic FloatMatrixDataSparse(float[] matrixSI,
long[] indices,
int length,
int rows,
int cols)
matrixSI - float[]; the data to storeindices - long[]; the index values of the Matrix, with <tt>index = row * cols + col</tt>length - int; the length of the vector (padded with 0 after highest index in indices)rows - int; the number of rowscols - int; the number of columnspublic FloatMatrixDataSparse(float[] denseSI,
int rows,
int cols)
throws ValueException
denseSI - float[]; the dense data to storerows - int; the number of rowscols - int; the number of columnsValueException - in case size is incorrectpublic FloatMatrixDataSparse(float[][] dataSI)
throws ValueException
dataSI - float[][]; the data to storeValueException - in case matrix is raggedpublic final FloatMatrixDataDense toDense()
toDense in class FloatMatrixDatapublic final float getSI(int row,
int col)
getSI in class FloatMatrixDatarow - int; the row number to get the value forcol - int; the column number to get the value forpublic final void setSI(int row,
int col,
float valueSI)
setSI in class FloatMatrixDatarow - int; the row number to set the value forcol - int; the column number to set the value forvalueSI - float; the value at the indexpublic final float[][] getDenseMatrixSI()
getDenseMatrixSI in class FloatMatrixDatapublic final double[][] getDoubleDenseMatrixSI()
getDoubleDenseMatrixSI in class FloatMatrixDatapublic final FloatMatrixDataSparse copy()
copy in class FloatMatrixDatapublic static FloatMatrixDataSparse instantiate(float[][] valuesSI) throws ValueException
valuesSI - float[][]; the (SI) values to storeValueException - in case matrix is raggedpublic final void incrementBy(FloatMatrixData right) throws ValueException
incrementBy in class FloatMatrixDataright - FloatMatrixData; the other data object to addValueException - if matrices have different lengthspublic final void decrementBy(FloatMatrixData right) throws ValueException
decrementBy in class FloatMatrixDataright - FloatMatrixData; the other data object to subtractValueException - if matrices have different lengthspublic final void multiplyBy(FloatMatrixData right) throws ValueException
multiplyBy in class FloatMatrixDataright - FloatMatrixData; the other data object to multiply withValueException - if matrices have different lengthspublic final void divideBy(FloatMatrixData right) throws ValueException
divideBy in class FloatMatrixDataright - FloatMatrixData; the other data object to divide byValueException - if matrices have different lengthspublic int hashCode()
hashCode in class FloatMatrixDatapublic boolean equals(Object obj)
equals in class FloatMatrixDataCopyright © 2015–2019 Delft University of Technology. All rights reserved.