[R] random between two values
Sarah Goslee
sarah.goslee at gmail.com
Thu Aug 6 17:11:22 CEST 2009
That's pretty straightforward to do - here's a simple function. The
exact behavior
at the "edges" is left as an exercise. :)
rbound <- function(rmin, rmax)
{
x <- runif(1)
x <- x * (rmax - rmin) + rmin
x
}
Sarah
On Thu, Aug 6, 2009 at 11:02 AM, damien landais<damien.landais at tdf.fr> wrote:
> Hi,
> I would obtain a random value between two (for example between 40.15 and 56.58 I would have only one value).
> I'm looking for a package/a function which could do this.
> Could anybody help me please?
>
> Cordialement
> Damien Landais
>
--
Sarah Goslee
http://www.functionaldiversity.org
More information about the R-help
mailing list