Model for Q-score heatmap
See full class description
float at |
( |
const size_t |
row, |
|
|
const size_t |
col |
|
) |
| const |
|
inline |
Get value at given row and column
TODO: This should thrown an exception if wrong
- Deprecated:
- Will be removed in next feature version (use operator() instead for C++ Code)
- Parameters
-
row | row index |
col | column index |
- Returns
- value
float at |
( |
const size_t |
idx | ) |
const |
|
inline |
Get value at given index
- Deprecated:
- Will be removed in next feature version (use operator[] instead for C++ Code)
- Parameters
-
- Returns
- value
size_t column_count |
( |
| ) |
const |
|
inline |
Get number of columns
- Returns
- number of columns
Test if heatmap is empty
- Returns
- true if there are not values in heatmap
Get number of rows * columns
- Returns
- number of rows * columns
float operator() |
( |
const size_t |
row, |
|
|
const size_t |
col |
|
) |
| const |
|
inline |
Get value at given row and column
TODO: This should thrown an exception if wrong
- Parameters
-
row | row index |
col | column index |
- Returns
- value
float& operator() |
( |
const size_t |
row, |
|
|
const size_t |
col |
|
) |
| |
|
inline |
Get value at given row and column
TODO: This should thrown an exception if wrong
- Parameters
-
row | row index |
col | column index |
- Returns
- value
float operator[] |
( |
const size_t |
idx | ) |
const |
|
inline |
Get value at given index
- Parameters
-
- Returns
- value
size_t row_count |
( |
| ) |
const |
|
inline |
Get number of rows
- Returns
- number of rows