I'm starting a project in which I'll be relying heavily upon the "run" primitive. Unlike most dialects of Logo, NetLogo's run only works on strings (and not...
4636
Jim Lyons
jimlyons37
Jun 1, 2006 4:19 pm
... Not sure what you are trying to accomplish. If each element of the list is a command, you can use foreach to run them. I created a few turtles in a new...
4637
Seth Tisue
sethtisue
Jun 1, 2006 4:21 pm
... Ken> Unlike most dialects of Logo, NetLogo's run only Ken> works on strings (and not also lists). Ken> I then thought I'd be clever and define procedures...
4638
Ken Kahn
toontalknow
Jun 2, 2006 2:16 pm
Thanks for your reply. I want to implement a scheduling primitive so that I can say things like do-at-time 5 [rt 15 fd 3 lt 15 fd 3] much like if/while/etc and...
4639
Jim Lyons
jimlyons37
Jun 2, 2006 6:52 pm
... Well, how about ["rt 15 fd 3 lt 15 fd 3"]? This way, run is only called once. ... Depends on what you make into the string. This works: run "if xcor > 0...
4640
Seth Tisue
sethtisue
Jun 2, 2006 6:58 pm
... Ken> Thanks for your reply. I want to implement a scheduling primitive Ken> so that I can say things like Ken> do-at-time 5 [rt 15 fd 3 lt 15 fd 3] Ken>...
4641
Nigel Gilbert
g_n_gilbert
Jun 3, 2006 3:59 am
An empty list is written: [] An empty string is "" How is an empty agentset written? (I want to set a variable to the empty agentset so that I can later...
4642
Rodney D Price
rodneydelmar...
Jun 3, 2006 4:00 am
I'm building a simulation that has a central store that agents use to interact with each other. Each agent has a different view of the store. I'm thinking...
4643
Uri Wilensky
uwilensk
Jun 3, 2006 4:11 am
Northwestern University39;s Center for Connected Learning and Computer-Based Modeling (CCL) is pleased to announce two three-hour NetLogo workshops to be held in...
4644
James Steiner
askturtlezero
Jun 4, 2006 11:34 pm
... Hi Nigel! There is no standard notation for an empty agentset!! To implement that, I use a breed called "empty-set" and never assign any agents to that...
4645
Seth Tisue
sethtisue
Jun 5, 2006 3:01 am
... Nigel> An empty list is written: [] An empty string is "" How is an Nigel> empty agentset written? Nigel> (I want to set a variable to the empty agentset...
4646
booblu_tj
Jun 5, 2006 2:19 pm
Hi Group, I am preparing my dissertation and Cognitive Agent is necessary for my model. Swarm and RePast are nice tools to develop my model but they are too...
4647
Ken Kahn
kenneth.kahn@...
Jun 5, 2006 6:11 pm
I successfully created a movie and then tried to create another one with the same name but QuickTime was still holding onto the file and NetLogo gave a...
4648
James Derbyshire
firm_formation
Jun 5, 2006 6:11 pm
Booblu, At the risk of being kicked off this group for recommending a rival tool I just wanted to say that if you're having trouble with RePast try using the...
4649
Esther Verreau
estherverreau
Jun 5, 2006 6:14 pm
Hi Rod - ... It is true, hubnet merely mirrors the server view to the client. esther...
4650
James Steiner
askturtlezero
Jun 5, 2006 7:57 pm
... And if that isn't exciting enough, you can even declare local variables inside the run string: cct 1 [ run "let n count neighbors with [ blue ] jump n" ] ...
4651
booblu_tj
Jun 5, 2006 8:01 pm
Hi james, Thanks you first, and I got your suggestion. I am so dispairing for NetLogo is not power enough to creating Cognitive Agent. And I still really hope...
4652
James Steiner
askturtlezero
Jun 5, 2006 8:02 pm
... Converting a list to a string *is* expensive and slow, and the foreach technique discussed earlier would be better, but just for the sake of completeness...
4653
Esther Verreau
estherverreau
Jun 5, 2006 8:05 pm
Hi Tze - What exactly are you doing to plot these? What's going wrong? Take a look at the Plotting section of the Programming Guide if you haven't already. ...
4654
macted16
Jun 6, 2006 1:57 pm
hi all... my name is marcus (indonesia) i'm doing a project about simulating recrystallization phenomena in steel, and in my beginning project, i had already...
4655
jmc@...
Jun 6, 2006 1:57 pm
Hi! This discussion interests me ! Why do you think netlog is not power enough ? Jose...
4656
Bill Rand
wrand@...
Jun 6, 2006 2:00 pm
Hello, I am curious as to what your concerns are exactly. I know of several examples of people who have developed complex cognitive agents in NetLogo. For...
4657
jaturapith krohkaew
kjatura
Jun 6, 2006 2:01 pm
Dear all, Can netlogo connect to any database? Thanks, Jaturapith Jaturapith __________________________________________________ Do You Yahoo!? Tired of spam?...
4658
martin_traunmueller
martin_traunmueller@...
Jun 7, 2006 2:14 pm
hello, does anyone of you has a script including the A*-algor. for pathfinding to share? i guess, i know all the examples that are listed in this forum - but, ...
4659
Juan M.C. Larrosa
jlarrosa@...
Jun 8, 2006 2:04 pm
Martin: Just visit the page of http://www.turtlezero.com/ And you can download this model: ...
4660
booblu_tj
Jun 8, 2006 2:05 pm
Hi Bill, Thank you. You are so kind. I am really happy to hear NetLogo is power enough to creating Cognitive Agent. So, according to cues from you I almost...
4661
jwbonne
Jun 8, 2006 2:07 pm
I'm trying to stop the procedure below, I have already hatched a number of turtles and want to hatch only a few more. What I thought should happen is that when...
4662
Esther Verreau
estherverreau
Jun 8, 2006 2:29 pm
Hi - You can setup and run experiments in BehaviorSpace (https://ccl.northwestern.edu/netlogo/docs/behaviorspace.html) the results of which can be exported in...
4663
netlogomodeller
Jun 9, 2006 1:42 pm
Just incase anybody is interested, I've written an extension for NetLogo that returns the standard normal cumulative distribution (called Normsdist in Excel,...
4664
thomasschmickl
Jun 9, 2006 1:42 pm
Hi Uri! Sorry for my late reply. I (and maybe others) just want to know if the third thing that is extremly often missed in Netlogo is also on your radar: ...