Performs row scaling and/or centering. Equivalent to using t(scale(t(mat))) in R except in the case of NA values.
FastRowScale(mat, center = TRUE, scale = TRUE, scale_max = 10)
Returns the center/scaled matrix
A matrix
a logical value indicating whether to center the rows
a logical value indicating whether to scale the rows
clip all values greater than scale_max to scale_max. Don't clip if Inf.