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 8389 - 8418 of 9893   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8389
... interesting question. it looks to me as if the methods you tried both do a great deal of traversing down the list (for instance, "item n x" must always...
roger peppe
wrtpeppe
Offline Send Email
Dec 1, 2008
6:22 pm
8390
Hello all, I have developed a Netlogo model of a quantum game of life and will be posting it soon to the user community models. A general explanation...
Carlos Pedro Gonça...
cpdsg.research
Offline Send Email
Dec 1, 2008
6:22 pm
8391
Thanks Seth, One-of worked, although a bit confused, as turtlebreed-1's repel each other so there should never be more than one on a patch at the same time -...
chunkyorkshireman
chunkyorkshi...
Offline Send Email
Dec 1, 2008
6:23 pm
8392
sorry for replying to my own email, but i should probably point out that a similar implementation could make it reasonably straightforward to do incremental...
roger peppe
wrtpeppe
Offline Send Email
Dec 1, 2008
6:23 pm
8393
Hello Martin, The problem with your friend's solution is it executes too slowly. Here is a faster version: /*--------------------------------------------*/ ...
Nicholas Radtke
radtken
Offline Send Email
Dec 1, 2008
6:24 pm
8394
Here's another simple approach, which doesn't use recursion. My terminology is a little different, since from a "graph theory" standpoint you are trying to...
fsondahl
Offline Send Email
Dec 1, 2008
6:24 pm
8395
[i wish i'd received this reply before i sent mine - it's taken 16 hours to get here...] ... [...] ... i *think* my algorithm is O(n * log(n)), assuming...
roger peppe
wrtpeppe
Offline Send Email
Dec 1, 2008
7:13 pm
8396
... wambie> Hi all, I'm trying to drive netlogo in headless mode from my wambie> own java program. I get the following when I run the code: wambie>...
Seth Tisue
sethtisue
Offline Send Email
Dec 1, 2008
7:13 pm
8397
... chunkyorkshireman> Why do the hatched turtlebreed-2's have the same chunkyorkshireman> size as turtlebreed-1? A hatched turtle inherits all of its...
Seth Tisue
sethtisue
Offline Send Email
Dec 1, 2008
7:13 pm
8398
I know of two cases where NetLogo applets didn't run on a Mac (they acted like they were loading and many minutes later no progress). These weren't systems I...
Ken Kahn
toontalk@...
Send Email
Dec 1, 2008
7:37 pm
8399
Thank you very much to all of you. I'm analyzing all your answers and testing them. I'll tell you the results as soon as I finish! Thanks again! Martin ...
Martín Atlas
martin.atlas
Offline Send Email
Dec 1, 2008
7:37 pm
8400
Dear Netlogo Users, I'd like to ask you a quick question about assigning mutually exclusive values for labels (or any other variables) for turtles. I have a...
C K
katheca@...
Send Email
Dec 2, 2008
3:06 pm
8401
Is there a way to have netlogo in the current situation? ifelse (condition) [ let s 3 ] [ let s -5] if (s > 0) [ ..... ] at this point I get that "nothing...
Giorgio Calanni
grgcln
Offline Send Email
Dec 2, 2008
3:07 pm
8402
Hello everybody, I tried your solutions and they worked very fine. The fastest were the two proposed by Roger Peppe. May be you can help me to solve this: Now...
Martín Atlas
martin.atlas
Offline Send Email
Dec 2, 2008
3:08 pm
8403
... something like this should do the job (note that any diagonal or non-unit-length steps will come out as "false", but that seems reasonable enough, and it's...
roger peppe
wrtpeppe
Offline Send Email
Dec 2, 2008
5:12 pm
8404
Here are a few methods. one: iterate list with foreach foreach the-list [ ;; copy value from list to a holding variable (for clarity) let the-value ? ...
James Steiner
askturtlezero
Offline Send Email
Dec 2, 2008
5:35 pm
8405
... You can use ifelse-value let s ifelse-value (condition) [3][-5] if s > 0 [ ... ]...
Esther Verreau
estherverreau
Offline Send Email
Dec 2, 2008
9:05 pm
8406
Hi Martin - ... Yes, it's possible, though, it's not as easy or natural as I'd like it to be (of course making it so is on the long list of things that I'd...
Esther Verreau
estherverreau
Offline Send Email
Dec 2, 2008
9:06 pm
8407
Hi Juanjo - Thanks for the report. ... there is no way to do this. ... This was a bug in NetLogo 4.0.3, thanks for catching it. It's fixed in 4.0.4, which we...
Esther Verreau
estherverreau
Offline Send Email
Dec 4, 2008
3:57 am
8408
Hello everyone, I am a relatively new user to netlogo and really to any type of programming itself. I am trying to write a code that does the following. (1)...
bristowforvarina
bristowforvarina@...
Send Email
Dec 4, 2008
3:58 am
8409
I am trying to store "experience" in a text file for each agent in my model. When an agent dies, I want to delete it's experience file. I am using the...
Cliff Behrens
cliff.behrens
Offline Send Email
Dec 4, 2008
3:58 am
8410
I have a question, in my code I want the agent helper to have a random value of p,G,and L. The values are then put into 3 formulas corresponding to the...
akilah42
ah005297@...
Send Email
Dec 4, 2008
3:58 am
8411
... roger> question for netlogo implementors: if i've got some code roger> containing a literal list, as in stepdirection below, is it roger> created only...
Seth Tisue
sethtisue
Offline Send Email
Dec 4, 2008
3:58 am
8412
... Ken> I know of two cases where NetLogo applets didn't run on a Mac Ken> (they acted like they were loading and many minutes later no Ken> progress). These...
Seth Tisue
sethtisue
Offline Send Email
Dec 4, 2008
9:29 am
8413
Thanks for the explanation of funny re-numbering. But what's up with the 32-bit and 64-bit versions? (Given that I'm running Leopard on my Intel Core 2 Duo...
ruebeckc
Offline Send Email
Dec 4, 2008
2:53 pm
8414
Hello I am using Matlab to call Netlogo in headless mode. It is working find except I can not get the report( ) function to report for different ticks other...
Paul Bell
paulwbell
Offline Send Email
Dec 4, 2008
2:53 pm
8415
... bo> Hi all: My question is in the subject. I use Linux and I'd like to bo> use something like ... bo> ./netlogo.sh /home/user/Research/mymodel.nlogo bo>...
Seth Tisue
sethtisue
Offline Send Email
Dec 4, 2008
7:57 pm
8416
... ruebeckc> Thanks for the explanation of funny re-numbering. But what's ruebeckc> up with the 32-bit and 64-bit versions? (Given that I'm ruebeckc>...
Seth Tisue
sethtisue
Offline Send Email
Dec 4, 2008
11:09 pm
8417
Hello everyone is there a way to run a simulation and save all the data (let's say all turtle's coordinates at each tick) at the end of the simulation itself? ...
Giorgio Calanni
grgcln
Offline Send Email
Dec 4, 2008
11:12 pm
8418
Dear all, Hi, I want to load a shapefile into NetLogo 4.0.3 , So i use the ... set streetFeatures gis:load-dataset "data/HongKong.shp" ... But the NetLogo...
jiatao1983
Offline Send Email
Dec 5, 2008
1:42 pm
Messages 8389 - 8418 of 9893   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