pExist {NetLogoR} | R Documentation |
Do the patches exist?
Description
Report TRUE
if a patch exists inside the world
's extent, report
FALSE
otherwise.
Usage
pExist(world, pxcor, pycor)
## S4 method for signature 'worldNLR,numeric,numeric'
pExist(world, pxcor, pycor)
Arguments
world |
|
pxcor |
Integer. Vector of patches |
pycor |
Integer. Vector of patches |
Value
Logical.
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#member
Examples
w1 <- createWorld(minPxcor = 0, maxPxcor = 9, minPycor = 0, maxPycor = 9)
pExist(world = w1, pxcor = -1, pycor = 2)
[Package NetLogoR version 1.0.5 Index]