Find row- or columnwise the index of the maximal / minimal element in a matrix.
getMaxIndexOfRows returns the index of the maximal element of each row.
getMinIndexOfRows returns the index of the minimal element of each row.
getMaxIndexOfCols returns the index of the maximal element of each col.
getMinIndexOfCols returns the index of the minimal element of each col.
If a corresponding vector (row or col) is empty, possibly after NA removal, -1 is returned
as index.
getMaxIndexOfRows(x, ties.method = "random", na.rm = FALSE) getMinIndexOfRows(x, ties.method = "random", na.rm = FALSE) getMaxIndexOfCols(x, ties.method = "random", na.rm = FALSE) getMinIndexOfCols(x, ties.method = "random", na.rm = FALSE)
| x | [ | 
| ties.method | [ | 
| na.rm | [ | 
[integer(n)].
x = matrix(runif(5 * 3), ncol = 3) print(x) print(getMaxIndexOfRows(x)) print(getMinIndexOfRows(x))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.