Hi all, we just noticed a strange behavior of the stop command in Netlogo 2.1. If the "stop" command is placed within an without-interruption"-block, it simply...
2553
Aaron Bauman
adb54@...
Jan 20, 2005 4:33 pm
Hi all, I'm a netlogo newbie, so I'll appreciate your patience. I'm working on an implementation of a graph (node-edge) framework as an extension alternative...
2554
Seth Tisue
sethtisue
Jan 20, 2005 7:04 pm
... phidippus> I ran some experiments with BehaviorSpace. At the end of the phidippus> experiments, when the experiment was fairely large (e.g., phidippus>...
2555
Josh Unterman
jwunterman
Jan 20, 2005 7:04 pm
here's how i indent nested ifelse blocks to make it more readable: ifelse () [ do some stuff ][ ifelse () [ do some stuff ][ ifelse () [ do some stuff ][ ...
2556
Nitin Raje
nitin_raje@...
Jan 21, 2005 3:01 pm
Hello all, When one uses e.g. set temp-list values-from neighbors[some-patch-value] is there a specific order, cw or ccw in which the patch values are always ...
2557
Maria Gallegos
artbyme1
Jan 21, 2005 3:02 pm
hi im new to this program i have one question regarding plotting i needed to know how u type in a super status plot in the code. If you dont see the turtles...
2558
James Steiner
jps_netlogo
Jan 21, 2005 3:02 pm
That would be a fine submission! The contest's parameters are pretty loose... they are looking not just for code that contains the solution, or even finds the...
2559
Thorsten Schmidt
THO_SCHMIDT@...
Jan 21, 2005 3:03 pm
Thomas wrote ... Yes, of course this would be a possibility, but not a very elegant one. Imagine a chess computer program, which expects a human to propose...
2560
James Steiner
jps_netlogo
Jan 21, 2005 6:20 pm
Agentsets are odd, in that they are "unordered", yet, of course, they definitely have an order. So, while it turns out that "ask patches" executes the patches...
2561
firemeboy
Jan 21, 2005 10:24 pm
I'm afraid I'm a bit new to both the group, and NetLogo, though I have made quite a bit of headway with a little program I'm working on. I've got a nice little...
2562
James Steiner
jps_netlogo
Jan 22, 2005 1:28 am
One way to do that would be to have the turtles own the variable, and use any of several methods to examine the value of other turtle's variable.. So let;s...
2563
john s. erickson
olyerickson
Jan 22, 2005 5:53 pm
... This problem is a bit hard to interpret. It sounds like each patch owns a set of four variables (call them var1 - var4). The turtles, which apparently can...
2564
Nitin Raje
nitin_raje@...
Jan 22, 2005 5:53 pm
James, Many thanks. Indeed the question of speed led me to ask about the any intrinsic orderin a list of neighbors. I thought if the order of neighbors is...
2565
James Steiner
jps_netlogo
Jan 24, 2005 5:54 am
In researching the previous post, I stumbled across a feature of at-points that is quite amazing, and some interesting information on the "intrinsic" ordering...
2566
James Steiner
jps_netlogo
Jan 24, 2005 5:54 am
... Yes, using patch-ahead in a loop to use patch-ahead to find, say, the nearest patch that meets some critera is one way, though there are many other ways to...
2567
firemeboy
Jan 24, 2005 3:23 pm
Thank you for the help, I'm going to play around with this and I'll let you know how it works out....
2568
Nitin Raje
nitin_raje@...
Jan 24, 2005 3:24 pm
Hello James, Thanks again for tons of useful information (enclycopedic) that would surely take some days attempt and appreciate. I found the conclusions very ...
2569
James Steiner
jps_netlogo
Jan 24, 2005 7:15 pm
Just did some quick tests. In the test, each patch has a variable called N. N contains the agentset returned by neighbors for each patch. It seems that code...
2570
Seth Tisue
sethtisue
Jan 24, 2005 7:16 pm
... Maria> hi im new to this program i have one question regarding plotting Maria> i needed to know how u type in a super status plot in the code. I don't...
2571
James Steiner
jps_netlogo
Jan 24, 2005 7:16 pm
On Mon, 24 Jan 2005 06:13:00 -0800 (PST), Nitin Raje ... I'm not totally sure I understand what you mean, but I think you mean storing the value of...
2572
Nitin Raje
nitin_raje@...
Jan 25, 2005 8:29 pm
James, This is very illuminating. Thanks again. Nitin ... Stay ahead of the information curve. Receive GIS news and jobs on your desktop daily. Subscribe today...
2573
Guillermo Montes
montesdad2003
Jan 26, 2005 6:34 pm
Greetings. I am having attempting to graph the overall exchange price of some turtles who are consumers in my model. The problem is that not everyone consumes...
2574
Andrei
ascheink
Jan 27, 2005 2:35 pm
... You can use the "with" reporter, which is described in the primitives dictionary. "with" reports a set of agents that satisfy a condition. Suppose turtles...
2575
G Montes
montesdad2003
Jan 28, 2005 3:58 pm
Thanks. It worked, of course. I am completely new at this. I have gone through tutorials 1-3. Any other tutorial out there you recommed I use to learn how to...
2576
aivsu
aivsu@...
Jan 28, 2005 3:58 pm
Is this suitable to develop a microworld for learning probability (grade 9 mathematics learning)? Any example?...
2577
estifenson
Jan 28, 2005 7:04 pm
I am yet somewhat new to NetLogo and have a question I hope is neither naive nor answered already, though I tried to find answers in this list and beyond and...
2578
Dor Abrahamson
abrador@...
Jan 28, 2005 7:04 pm
Dear "aivsu" Thanks for your interest in NetLogo. We have found the NetLogo environment highly suitable for student learning both of probability "per se" and...
2579
James Steiner
jps_netlogo
Jan 28, 2005 11:23 pm
... Well, just to state the possibly obvious... if the values were actually as linear and straight forward as that, i.e., 1, 2, 3, 4, ... or 2, 4, 6, 8, etc......
2580
Andrei
ascheink
Jan 31, 2005 10:32 pm
... I think the best way to learn more involved programming with NetLogo is to experiment in the Command Center with the Primitives Dictionary at hand. I also...
2581
Steven T.Stoddard
sstoddar@...
Feb 1, 2005 2:12 am
James-- Yes, that did the trick. I appreciate the help as the solution wasn't obvious from available literature, though it makes sense to my growing ...