absMax {reb} | R Documentation |
Returns the absolute maxima of the input values.
absMax(x)
x |
numeric argument |
absMax
returns the absolute maximum of all the values present
in the arguments as double
persurving the sign. Essentially
max(abs(x),na.rm=T)
.
Karl A. Dykema and Kyle A. Furge
absMax(c(1,2,3,4)) absMax(c(-1,-2,-3,-4))