Search the web
Sign In
New User? Sign Up
netlogo-users · NetLogo Users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6482 - 6511 of 9898   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6482
Seth, It was my report that triggered the discussion; I definitely appreciate the level of responsiveness, and the very complete explanation of the list...
Nick
nickbenn
Offline Send Email
Jul 1, 2007
11:59 pm
6483
... Seth, The tips about using lists in NL4 are very useful, thanks. Using your advice, I was able to improve my implementation of hashes very much over using...
Jim Lyons
jimlyons37
Offline Send Email
Jul 2, 2007
2:24 pm
6484
Thanks a lot Jim, the code and information you provided works just perfectly for my purpose....
blacklotus915
Offline Send Email
Jul 2, 2007
2:24 pm
6485
... Yes, please! pretty please?! Jose...
Jose M. Vidal
jmvidal
Offline Send Email
Jul 2, 2007
2:24 pm
6486
hello, from user's manual, I saw "file-print" can output the values as the text file and then followed by a carriage return, which means it is gonna start a...
showwayer
Offline Send Email
Jul 2, 2007
2:26 pm
6487
Cai, file-print puts the carriage return only at the end of the value printed, even if that value is a list. Thus, let my-list [1 2 3] file-print my-list will...
Nick
nickbenn
Offline Send Email
Jul 2, 2007
6:40 pm
6488
How can i place the people (turtles) just randomly at the street (patches, with white color)?? and then, how can i moving people randomly through the...
sekulaholakoik
Offline Send Email
Jul 2, 2007
6:46 pm
6489
I need to locate the System dynamics modeler guide. Can anyone help me out! Thanks....
bhuvana_nit
bhuvana_nit@...
Send Email
Jul 2, 2007
6:48 pm
6490
In another thread, Nick showed a good example of using 'reduce', one of those mysterious but powerful list operators in NetLogo. To do the equivalent of a...
Jim Lyons
jimlyons37
Offline Send Email
Jul 3, 2007
1:59 am
6491
Hi, Folks! Here's a model that demonstrates an implementation of Kruskal's algorithm for finding the minimum spanning tree for a network. ...
James Steiner
askturtlezero
Offline Send Email
Jul 3, 2007
1:59 am
6492
Actually, one of the main differences between Kruskal's and Prim's algorithms is that in the former, there is not a single tree that is progressively expanded...
Nick
nickbenn
Offline Send Email
Jul 3, 2007
1:59 am
6493
Jim, You reminded me of somethng I forgot! A few months ago I assembled a NetLogo extension that wraps most of Java's basic string functions (like split and...
James Steiner
askturtlezero
Offline Send Email
Jul 3, 2007
1:48 pm
6494
... little ... Thanks your assistance^^~~...
neverlate19
Offline
Jul 3, 2007
1:50 pm
6495
Yeah, this (the way I was joining things to a tree, and finding loops) reflects an error in my understanding of the explanation of Kruskals algorithm......
James Steiner
askturtlezero
Offline Send Email
Jul 3, 2007
2:59 pm
6496
Hi, I am needing aid in a model that to some time I come working using the HubNet, but the model not yet functions very well, it does not obey the rules that I...
lcosta@...
Send Email
Jul 3, 2007
5:27 pm
6497
... http://ccl.northwestern.edu/netlogo/docs/systemdynamics.html...
Esther Verreau
estherverreau
Offline Send Email
Jul 3, 2007
5:27 pm
6498
... you want turtles on a random patch with pcolor = white? ask turtles [ move-to one-of patches with [ pcolor = white ] ] ... I'm assuming the streets are...
Esther Verreau
estherverreau
Offline Send Email
Jul 3, 2007
5:28 pm
6499
This is fascinating and instructive modeling --- very new for me. Please tell me for what purposes are models like this. Lou ... From: James Steiner To:...
Louis Macovsky
mcvsky
Offline Send Email
Jul 3, 2007
5:28 pm
6500
Just a quick reminder that the CCL will be running a 1 day tutorial as part of SwarmFest 2007, which is being hosted by DePaul in downtown Chicago this year....
Josh Unterman
jwunterman
Offline Send Email
Jul 3, 2007
7:49 pm
6501
... Jim> Seth, The tips about using lists in NL4 are very useful, Jim> thanks. Using your advice, I was able to improve my implementation Jim> of hashes very...
Seth Tisue
sethtisue
Offline Send Email
Jul 3, 2007
7:49 pm
6502
Hi! I'm having trouble with my Java extension. When I load a model that invokes my extension, I get the below error. (This is in NetLogo 3.1.4) If I add the...
James Steiner
askturtlezero
Offline Send Email
Jul 3, 2007
9:10 pm
6503
The following is a list of models add to http://ccl.northwestern.edu/netlogo/models/community/ so far this year. Everyone is encouraged to submit their own...
Esther Verreau
estherverreau
Offline Send Email
Jul 3, 2007
9:10 pm
6504
... It looks like you are compiling with a incompatible version of the JDK. meaning, the JDK you compile with is of a higher version number than the JVM that...
Craig Brozefsky
craigbrozefsky
Online Now Send Email
Jul 3, 2007
9:51 pm
6505
Hello- I'm having trouble using -of. In my code I've been trying to use it to look at a variable that I've defined on a specific instance of a turtle....
eclough_98
eclough@...
Send Email
Jul 3, 2007
9:52 pm
6506
Hi Emily - I take it you are using 4.0beta1. We changed the of syntax in 4.0 so what you used to write: pxcor-of patch 0 0 you write [pxcor] of patch 0 0 ...
Esther Verreau
estherverreau
Offline Send Email
Jul 3, 2007
10:01 pm
6507
... Craig> It looks like you are compiling with a incompatible version of Craig> the JDK. meaning, the JDK you compile with is of a higher Craig> version...
Seth Tisue
sethtisue
Offline Send Email
Jul 4, 2007
3:21 pm
6508
I would like to make NetLogo users (and their students, colleagues, etc.) aware of a graduate-level short course on agent- and individual-based modeling that...
s_railsback
Offline Send Email
Jul 5, 2007
3:31 am
6509
Yes, I think that's it. I just downloaded the SDK, and probably got the latest one. Thanks! I'll go get the older one. ~~J...
James Steiner
askturtlezero
Offline Send Email
Jul 5, 2007
3:39 am
6510
I my model I have 5 agents. for example each of them has energy and money. I want to add energy from agent (A) to his neighbors and take from their money to...
Behrooz Hassani M
behrooz_hassani@...
Send Email
Jul 5, 2007
3:40 am
6511
Why is not working these sentences? I wanna do two different types of people: recyclers and NOrecyclers. With different colors and according with the parameter...
sekulaholakoik
Offline Send Email
Jul 5, 2007
3:59 am
Messages 6482 - 6511 of 9898   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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