NLany {NetLogoR} | R Documentation |
Any agents?
Description
Report TRUE
if agents
is non empty, report FALSE
otherwise.
Usage
NLany(agents)
## S4 method for signature 'matrix'
NLany(agents)
Arguments
agents |
Matrix ( `AgentMatrix` object representing the moving `agents`. |
Value
Logical. TRUE
if there is at least one patch or one turtle in the
agents
, FALSE
otherwise.
Author(s)
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
https://ccl.northwestern.edu/netlogo/docs/dictionary.html#any
Examples
# Patches
w1 <- createWorld(minPxcor = 0, maxPxcor = 4, minPycor = 0, maxPycor = 4)
p1 <- noPatches()
p2 <- patch(w1, 0, 0)
NLany(p1)
NLany(p2)
# Turtles
t1 <- createTurtles(n = 10, coords = randomXYcor(w1, n = 10))
t2 <- noTurtles()
NLany(t1)
NLany(t2)
[Package NetLogoR version 1.0.5 Index]