Sure. Not knowing anything else, here's a simple example: ask turtles [ hide-turtle ] ask turtle-of-interest [ show-turtle ] You can also use the WATCH command...
11886
James Steiner
askturtlezero
Mar 1, 2011 7:24 pm
Ask-concurrent invokes the old NetLogo concurrent execution method, and may not work they way you desire or expect. In a model like yours, where agents are...
11887
Peter Cappaert
peter_cappaert
Mar 1, 2011 8:14 pm
I'm not sure precisely which parts you're confused about, Harsan, but the definitions for all the terms can be found in the NetLogo ...
11888
Jerry Rhee
jerryrhee
Mar 1, 2011 8:14 pm
Gracias, OB-1! J ... From: James Steiner <gregortroll@...> Subject: Re: [netlogo-users] highlighting a group of turtles To: netlogo-users@yahoogroups.com...
11889
Jim Lyons
jimlyons37
Mar 1, 2011 8:27 pm
... Harsan, Here it is with translation into comments. ask leaves ;; ask all the turtles of breed leaves [ ifelse random 2 = 1 ;; do one of the next two...
11890
Sarah C
sarah23354
Mar 2, 2011 12:59 am
Hi Jan, Thanks for replying! I had tried setting the paths both using quotations and not using them, but only ended up getting it to work in Windows (XP,...
11891
Sarah C
sarah23354
Mar 2, 2011 2:44 pm
Hi Jan, Thanks for replying! I had tried setting the paths both using quotations and not using them, but only ended up getting it to work in Windows (XP,...
11892
朱琼
zhuqiongleo@...
Mar 2, 2011 2:44 pm
thanks very much! I use your method and I can run the program successfully! thank you for your help!...
11893
jeffcronley
Mar 2, 2011 11:33 pm
I am running a model and want to get a reading of the variables at a certain amount of ticks in the run. More specifically, I want readings once every 30...
11894
Jerry Rhee
jerryrhee
Mar 3, 2011 6:26 pm
Hi again, I have a model running and there are a bunch of turtles on it. How do I find out the who number so I can figure out what its measures are, please? ...
11895
indian56660
siddharth.gh...
Mar 3, 2011 6:27 pm
i am developing a model on chemical kinetics in which there is interaction between molecules. i am half way down in the development. i am developing a scenario...
11896
indian56660
siddharth.gh...
Mar 3, 2011 6:28 pm
i need a condition to halt a moving turtle when it reaches a particular patch. i would really appreciate if anyone could help me with a syntax for the same. i...
11897
vahidmojtahed
Mar 3, 2011 6:28 pm
Hi I have a funny problem. In one procedure I ask Netlogo to increase quota one unit every time set quota quota + 1 and the initial value of quota is 10 what...
11898
Simone Gabbriellini
simonegabbri...
Mar 3, 2011 7:07 pm
Hi, Maybe all your turtles (121) update that variable? HTH, Simone...
11899
peter_cappaert
Mar 3, 2011 7:24 pm
Would you post more of your code so we can get a better understanding of what may be going on here? -Peter...
11900
Vahid
vahidmojtahed
Mar 3, 2011 8:46 pm
No I have only 3 turtles. Also since I'm asking observer, turtles should not take that command....
11901
John Balwit
balwit...
Mar 3, 2011 8:47 pm
I am an educator and have used NetLogo for years both in the classroom and, more recently, as an academic researcher. NetLogo has fantastic potential as a...
11902
James Steiner
askturtlezero
Mar 3, 2011 8:48 pm
Most simply, I will presume that the turtle's goal patch is stored in a variable owned by the turtle. Here's a simple example of how that might look: ;;...
11903
James Steiner
askturtlezero
Mar 3, 2011 8:48 pm
Testing for collision is as easy as this: ;; test for turtle collision ;; each turtle only checks for collision with turtles of higher who-number than itself ...
11904
Jim Lyons
jimlyons37
Mar 3, 2011 10:46 pm
... This has also been my experience using NetLogo to teach programming in middle and high schools. ... Not sure exactly what you mean by "embed". It is...
11905
Vahid
vahidmojtahed
Mar 3, 2011 11:31 pm
Hi, I uploaded my code under TGC market-Feb 2010-28-2.nlogo.zip The problem was posted before under titles of A mathematical problem. Thanks for any help. ...
11906
engeng
lin_jiaying@...
Mar 4, 2011 12:55 am
Hi netlogo users! How can I obtain the area under graph, the minimum value as well as the final value from a plot in netlogo logo? I need these values to be...
11907
anuar jaafar
anuarjaafar85
Mar 4, 2011 3:48 pm
you can put the command in the procedure like this: export-plot "populations" "E:/Project/50.csv" the population refer to the title of the plot .csv is the...
11908
George Pang
pang_wenhan
Mar 4, 2011 3:48 pm
Dear Gianluca, How can I declare (define) a table as my turtle / breed variable? The example in the manual use "let" which is for local variable only. Thank...
11909
luluNET
alessandra.goetz@...
Mar 4, 2011 3:48 pm
Hallo Everyone, I am trying to load a festival area (consisting of 5 Shapefiles) into NetLogo Space. I have tried this first by exporting my shapefiles as a...
11910
Simone Gabbriellini
simonegabbri...
Mar 4, 2011 3:49 pm
Hi, just use "set" instead. turtle-own [mytable] to setup ask turtles [ set mytable table:make blablabal... ] try to keep messages on the list! ;) HTH, Simone...
11911
Alan G Isaac
aisaac0
Mar 4, 2011 3:49 pm
... extensions [table] turtles-own [mytable] to test crt 5 ask turtles [set mytable table:make] ask turtles [table:put mytable "test" random 5] ask turtles...
11912
Seth Tisue
sethtisue
Mar 4, 2011 3:49 pm
... indian56660> i need a condition to halt a moving turtle when it reaches indian56660> a particular patch. I'd suggest you take a look at Move Towards Target...
11913
Seth Tisue
sethtisue
Mar 4, 2011 3:50 pm
... indian56660> i need help in the code for collision... i e .... i need a indian56660> condition to be checked when molecule1 and molecule2 indian56660>...
11914
anuar jaafar
anuarjaafar85
Mar 4, 2011 6:22 pm
In my opinion, if the netlogo is run very slow, you can take this action. Instead of using the export command in the procedure, it is better you use right ...