
Newest 'netlogo' Questions - Stack Overflow
I'm working with a NetLogo model where my turtles have variables lat and long. I want to assign these variables the corresponding latitude and longitude values based on the coordinate reference system ...
How to use list values inside lists in Netlogo - Stack Overflow
Apr 7, 2022 · How to use list values inside lists in Netlogo Asked 3 years, 10 months ago Modified 3 years, 10 months ago Viewed 2k times
How do I do a SWITCH or SELECT CASE in NetLogo?
Oct 17, 2021 · NetLogo does not have a native SWITCH, SWITCH-CASE, or SELECT-CASE type of multiple condition, how do I do the same thing without having a giant mess of nested IF-ELSE …
How to fix "Nothing named ? has been defined" error in NetLogo 6.0.4
Feb 2, 2019 · I downloaded the modified random clusters code for generating neutral landscape models using the Millington's version of the modified random clusters approach in the NetLogo modeling …
NetLogo: the meaning of TO-REPORT explained for dummies?
I have a problem to understand the role of to-report and report in NetLogo, even it seems pretty useful and I can't really find a help written in "human style" language. In NetLogo dictionnary ht...
NetLogo Debugging - Stack Overflow
Aug 25, 2015 · NetLogo being interactive makes debugging easy, but I yet to find any tools available for setting breakpoints and stepping through code. Please guide me if such exist. Or I can achieve the …
netlogo - Don't Understand Brackets - Stack Overflow
Feb 8, 2024 · I don't really understand the brackets; NetLogo either says I'm missing brackets or need brackets. Whenever I try to add or remove brackets it just says a different one is broken. Code just …
Netlogo: How to make a turtle move towards an unique patch target?
Oct 18, 2021 · Netlogo: How to make a turtle move towards an unique patch target? Asked 4 years, 3 months ago Modified 4 years, 3 months ago Viewed 853 times
Netlogo: How to set different colors to turtles? - Stack Overflow
May 29, 2021 · A quick question: How to set every turtles different colors? Like, I'd to set the random color whose value ends in *6 or *3 to turtles. My code: ask turtles [set color ((random 14) * 10 + 6 ) or ((
netlogo - How to properly plot variables - Stack Overflow
Jul 3, 2015 · NetLogo recommended practice is to do this in the interface directly rather than in code. So, you could create a plot on the interface with, for example mean [revenue] of turtles as the plot …