copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
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 - Error: You cant use % in a turtle context, because % is . . . However, if you look at the Netlogo dictionary, you will see that create-turtles (and other forms like create-object) is only valid when used by the observer, not when used by a turtle If you want a turtle to create a new turtle, you need the hatch command
Netlogo - Stop simulation after a certain event - Stack Overflow I want my Netlogo simulation to stop after a certain event (In this case after all the black patches have been converted by turtles into yellow patches) How might I accomplish this? Here is my (basic) code so far: to setup clear-all create-turtles amount [ setxy random-xcor random-ycor ] reset-ticks end to monitor show count patches show ticks
netlogo - How to properly plot variables - Stack Overflow 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 code You can also do a histogram if you want all the revenue values to be displayed but that won't give you a plot over time