Skip to search.
netlogo-educators

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 55 - 85 of 139   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
55 Kent Chesnut
kentche Offline Send Email
Apr 26, 2006
6:18 pm
As a new NetLogo user and group member, I say hi! I am very interested in using Logo in a Constructionist methodology. My goal is to get a group of...
56 Daniel Ajoy
daniel_ajoy Offline Send Email
Apr 26, 2006
9:11 pm
... Would you say that these kind of projects require a high level of competence? http://mondragon.angeltowns.net/paradiso/GaleriaGT.html Or do you believe...
57 Diana Stirling
moonpowered Offline Send Email
Apr 27, 2006
2:00 pm
Hi Kent, There is such a book for StarLogo. It's called: Adventures in Modeling: Exploring Complex, Dynamic Systems with StarLogo. It's by Vanessa Stevens ...
58 Kent Chesnut
kentche Offline Send Email
Apr 27, 2006
2:01 pm
Daniel, Thanks for the link. I think the projects are quite sophisticated and would certainly be meaningful for the kids. And I think I get your point - the ...
59 Daniel Ajoy
daniel_ajoy Offline Send Email
Apr 28, 2006
1:47 pm
... Yes, that was my point. However I do think sometimes that that kind of project won't seem meaningful enough or cool enough for modern kids that play 3D...
60 Kent Chesnut
kentche Offline Send Email
May 1, 2006
3:19 pm
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...
61 Kent Chesnut
kentche Offline Send Email
May 1, 2006
3:21 pm
Diana, Thanks for the input. Have a great day. Kent...
62 jbonnes@...
jwbonne Offline Send Email
May 1, 2006
5:07 pm
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 ...
63 Kent Chesnut
kentche Offline Send Email
Jun 20, 2006
1:37 pm
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...
64 Kent Chesnut
kentche Offline Send Email
Jun 23, 2006
1:46 am
Michael, Thanks so much for the input. * The idea of using the motivational aspects of the shapes / sizes is a very good one. And it's a much more...
65 Michael Novak
mnovak@... Send Email
Jun 23, 2006
1:48 am
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 ...
66 quinnjb2003 Offline Send Email Jun 23, 2006
1:55 am
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...
68 cwt.20082008 Offline Send Email Nov 20, 2007
2:09 pm
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...
69 lynnx2008 Offline Send Email Feb 2, 2008
6:38 pm
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...
70 Gary An
docgca Offline Send Email
Feb 4, 2008
2:32 pm
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...
71 Michael Novak
michaelnovak22 Offline Send Email
Feb 4, 2008
2:32 pm
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 ...
72 ifhodhod Offline Send Email Feb 27, 2008
10:38 pm
hello, i am a newer in netlogo can you give me the manual guide for netlogo in french language.thank you....
73 Andres Quevedo
andresquevedo Offline Send Email
Jun 8, 2008
12:04 am
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...
74 Daniel Ajoy
daniel_ajoy Offline Send Email
Jun 19, 2008
3:42 pm
... Hola Andres, Los trabajos de Murray-Lasso como: SOBRE LA APLICABILIDAD DE LOGO EN EL DESARROLLO DE MATERIALES EDUCATIVOS CON INTELIGENCIA ARTIFICIAL ...
75 fcylon Offline Send Email Jan 19, 2009
3:34 pm
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...
76 fcylon Offline Send Email Jan 26, 2009
2:02 pm
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...
77 James Steiner
netlogo@... Send Email
Feb 2, 2009
9:05 pm
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. ...
78 Seth Tisue
sethtisue Offline Send Email
Feb 2, 2009
9:05 pm
... 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...
79 fcylon Offline Send Email Feb 24, 2009
3:12 am
How could I let a agent wait for a while (e.g. 5 seconds) before executing a command on that agent. Bye, Aminul....
80 James Steiner
netlogo@... Send Email
Mar 2, 2009
12:11 pm
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...
81 Muaz Niazi
muaz_niazi Offline Send Email
Mar 2, 2009
12:11 pm
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 ...
82 fcylon Offline Send Email Mar 2, 2009
12:11 pm
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....
83 activist_02 Offline Send Email Mar 9, 2009
3:59 pm
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 ...
84 Sheikh Haque
fcylon Offline Send Email
Mar 9, 2009
3:59 pm
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...
85 fcylon Offline Send Email Mar 9, 2009
3:59 pm
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,...
Messages 55 - 85 of 139   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help