absMax {reb}R Documentation

Absolute Maxima

Description

Returns the absolute maxima of the input values.

Usage

absMax(x)

Arguments

x numeric argument

Value

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).

Author(s)

Karl A. Dykema and Kyle A. Furge

Examples

  absMax(c(1,2,3,4))
  absMax(c(-1,-2,-3,-4))

[Package reb version 1.2.0 Index]