posMin {tilingArray} | R Documentation |
Find the smallest positive number in a vector
posMin(x, ...)
x |
Numeric vector. |
... |
Further arguments that get passed on to min . |
This is a rather trivial convenience function.
Numeric of length 1.
W. Huber <huber@ebi.ac.uk>
x = runif(5) posMin(x-0.5) posMin(x-2)