Extremes {gmp} | R Documentation |
Theses functions overload min and max function for big rationals and big integers
max.bigz(..., na.rm=FALSE) max.bigq(..., na.rm=FALSE) min.bigz(..., na.rm=FALSE) min.bigq(..., na.rm=FALSE)
... |
numeric arguments |
na.rm |
a logical indicating whether missing values should be removed. |
return an element of class bigz or bigq.
Antoine Lucas
x = as.bigz(1:10) ##_call max.bigz => return 10 max(x) min(x) x = as.bigq(1:10) ##_call max.bigq max(x) min(x)