Skip to content
Prev 383167 / 398502 Next

nearest lower and higher integers to a multiple of another integer

x <- -2
xi <- x %/% 4
xmin <- 4 * xi
xmax <- 4 * ( 1 + xi )
On April 6, 2020 1:29:30 AM PDT, Stefano Sofia <stefano.sofia at regione.marche.it> wrote: