What is the name of the number that rescales a set of rational numbers s.t. they are all integers? E.G., 1,000 in the following example.
> c(-.11, -.105, -.1) * 1000
[1] -110 -105 -100
However, if the first number was .1111, the number is instead 10,000.
> c(.1111, -.105, -.1) * 10000
[1] 1111 -1050 -1000
It seems like it should be simple enough but I can't think of the right name. I tried to relate it to the significand but that didn't make sense.