Learn R Programming

NetLogoR (version 1.0.5)

randomXcor: Random xcor

Description

Report n random xcor coordinates within the world's extent.

Usage

randomXcor(world, n)

# S4 method for worldNLR,numeric randomXcor(world, n)

Value

Numeric. Vector of length n of xcor coordinates.

Arguments

world

WorldMatrix or worldArray object.

n

Integer.

Author

Sarah Bauduin

References

Wilensky, U. 1999. NetLogo. http://ccl.northwestern.edu/netlogo/. Center for Connected Learning and Computer-Based Modeling, Northwestern University. Evanston, IL.

See Also

Examples

Run this code
w1 <- createWorld(
  minPxcor = 0, maxPxcor = 4, minPycor = 0, maxPycor = 4,
  data = runif(25)
)
t1 <- createTurtles(n = 10, coords = cbind(
  xcor = randomXcor(world = w1, n = 10),
  ycor = randomYcor(world = w1, n = 10)
))
plot(w1)
points(t1, col = of(agents = t1, var = "color"), pch = 16)

Run the code above in your browser using DataLab