powered by
Row and columns sums/means.
# S4 method for float32 colSums(x, na.rm = FALSE, dims = 1)# S4 method for float32 rowSums(x, na.rm = FALSE, dims = 1)# S4 method for float32 colMeans(x, na.rm = FALSE, dims = 1)# S4 method for float32 rowMeans(x, na.rm = FALSE, dims = 1)
# S4 method for float32 rowSums(x, na.rm = FALSE, dims = 1)
# S4 method for float32 colMeans(x, na.rm = FALSE, dims = 1)
# S4 method for float32 rowMeans(x, na.rm = FALSE, dims = 1)
A matrix of the same type as the highest precision input.
A float vector/matrix.
Should missing values be removed?
Ignored. Be honest, you've never even used this argument before, have you?
library(float) s = flrunif(5, 3) rowSums(s) colSums(s)
Run the code above in your browser using DataLab