Daniel, I'm not a teacher either. Hmmm, wonder if that is pretty common in this forum. I've thought about the question of what modern kids will want to do. I...
I have been teaching Logo using both Microworlds and now NetLogo. My experience with high school students is that they love it when they can get the computer ...
I'm pretty excited about both NetLogo and the use of constructionist principles. I'm currently putting together a Computer Camp as an outreach to neighborhood...
Hi Kent, The computer camp is very similar to what I have done in previous years for kids in grades 6-8 and I might be able to advise here as well. The ...
Michael Novak
mnovak@...
Jun 23, 2006 1:48 am
66
Hi, I am a new user to netlogo. This is a new term to me. My professor will be using it in my graduate math modeling course and I REALLY need to know more...
hi,I am a newer to the netlogo ,because I am just studying the netlogo,before I entered the postgraduate life ,I didn't touch this aspect knowledge,I hope my...
Hi, I am a newcomer. I am trying to teach my kids speciation by asking them to build a relevant model. I wonder if any of you used to build a model of...
Hi Lynn, You can take a look in the Models LIbrary: Biology -> Evolution -> Genetic Drift for some good examples. The Echo model under Evolution is also a...
Hi Lynn, There are a number of evolution models in the current NetLogo release in the NetLogo models library (under the Curricular models folder, in BEAGLE ...
Hi everybody, I'm a teacher of Artificial Intelligence at a University in South America. Since the subject was becoming too theoretical I've decided to include...
... Hola Andres, Los trabajos de Murray-Lasso como: SOBRE LA APLICABILIDAD DE LOGO EN EL DESARROLLO DE MATERIALES EDUCATIVOS CON INTELIGENCIA ARTIFICIAL ...
Hi dear, how r you doing. Im a new netlogo user. Can you please let me know would it be possible to implement grid-computing environment using this model. Bye...
Is there anyone to give a feedback in front of this 1. How can i create different parameter for an agent as well as assign value into them 2. Could I create a...
Hi! You can code loops, though explicit loops like FOR-loops in other languages are rare in NetLogo--there are often other, more useful, ways to iterate. ...
James Steiner
netlogo@...
Feb 2, 2009 9:05 pm
78
... fcylon> 1. How can i create different parameter for an agent as well as fcylon> assign value into them If I understand your question correctly, almost...
Sometimes, you can get away with just using the WAIT command. But those times are rare, since when a turtle is WAITing, nothing else happens. Really, the only...
James Steiner
netlogo@...
Mar 2, 2009 12:11 pm
81
Hi, You could use e.g. something of this type. Please read the documentation of every for details: to go . . . every 5 [ fd 1 ] end Warm regards, Muaz Niazi ...
Is there any command in Netlogo like "sleep" in java program. Just wait for some time before executing a command. I really looking forward to hearing from you....
Hi,all I have a question about NetLogo. I want a random 0-1 n*n matrix every tick. If i run 50 times, there will be 50 matrices. Here is a 5*5 sample: 01101 ...
Dear Niazi, thanks for your reply. the wait/every command is interesting. But while one agent is waiting, i could not execute any other command to other...
Thanks for your reply. The wait/every command is interesting. But while one agent is waiting, i could not execute any other command to other agents. Actually,...
In this case, you simply need to add a flag to the agents, so they know to wait until that flag becomes false, or a count down, so they know how many ticks to...
James Steiner
netlogo@...
Mar 16, 2009 1:53 pm
88
Hi! Sure. N-VALUES and RANDOM will do the trick. let matrix n-values 5 [ n-values 5 [ random 2 ] ] ~~James...
James Steiner
netlogo@...
Mar 16, 2009 1:54 pm
89
Hi, Well, I think as long as the button calling the code is a forever button, some one else can confirm but turtles should work concurrently. Here is a...