<?xml version="1.0" encoding="UTF-8" ?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>netlogo-users at Yahoo! Groups</title>
    <link>http://groups.yahoo.com/group/netlogo-users/</link>
    <description>NetLogo Users</description>

    <item>
      <title>Re: Associate &gt; 2 turtles to single patch using one patch variable</title>
      <pubDate>Wed, 22 May 2013 20:49:21 GMT</pubDate>
      <dc:creator>Nicolas Payette</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16641</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16641</guid>
      <description>You can use a list of turtles. Here is a contrived example: patches-own [ turtle-owners ] to setup clear-all ask patches [ set turtle-owners [] ] ; start with</description>
    </item>
    <item>
      <title>Associate &gt; 2 turtles to single patch using one patch variable</title>
      <pubDate>Wed, 22 May 2013 20:29:07 GMT</pubDate>
      <dc:creator>humbpacked</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16640</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16640</guid>
      <description>Hello, Is it possible to associate the ID of 2 or more turtles to a single patch using only one patch variable? If yes, how? I&#39;m making each turtle acquire a</description>
    </item>
    <item>
      <title>Complex Hospital Simulation</title>
      <pubDate>Wed, 22 May 2013 18:18:32 GMT</pubDate>
      <dc:creator>maighannam86</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16639</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16639</guid>
      <description>Hello, I am currently trying to reproduce a patient-nurse hospital interaction system where nurses visit patients at certain times and within an interval of</description>
    </item>
    <item>
      <title>Re: new turtle around neighborhood</title>
      <pubDate>Wed, 22 May 2013 15:24:34 GMT</pubDate>
      <dc:creator>Nicolas Payette</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16638</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16638</guid>
      <description>James&#39; answer is correct, but sprout doesn&#39;t copy the turtle variables like hatch does. If you really need that, you can do: ask turtles [ let parent self ask</description>
    </item>
    <item>
      <title>Re: new turtle around neighborhood</title>
      <pubDate>Wed, 22 May 2013 12:23:21 GMT</pubDate>
      <dc:creator>James Steiner</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16637</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16637</guid>
      <description>Try ASK TURTLES [ ASK NEIGHBORS [ SPROUT 1 ] ] HTH, ~~James</description>
    </item>
    <item>
      <title>Re: Comparing two dates in Netlogo</title>
      <pubDate>Wed, 22 May 2013 12:23:11 GMT</pubDate>
      <dc:creator>Jim Lyons</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16636</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16636</guid>
      <description>... Comparing dates is a little tricky unless the date string has the year first, then the month, then the day, all in a fixed-width numerical format. The only</description>
    </item>
    <item>
      <title>Re: Is lput as fast as fput now?</title>
      <pubDate>Wed, 22 May 2013 03:01:48 GMT</pubDate>
      <dc:creator>jasonbertsche</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16635</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16635</guid>
      <description>First, clarification: before NetLogo 5.0, it was `fput` that was faster, since the underlying structure there was a simple linked list (Scala&#39;s `List` class).</description>
    </item>
    <item>
      <title>Is lput as fast as fput now?</title>
      <pubDate>Wed, 22 May 2013 01:23:22 GMT</pubDate>
      <dc:creator>s_railsback</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16634</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16634</guid>
      <description>I just noticed that, as of Version 5.0, the Programming Guide for lists no longer says that lput is a faster way to add something to a list than fput. Are</description>
    </item>
    <item>
      <title>new turtle around neighborhood</title>
      <pubDate>Tue, 21 May 2013 19:07:04 GMT</pubDate>
      <dc:creator>raulubilluz</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16632</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16632</guid>
      <description>I don&#39;t know how to create turtles around their neighborhood. I was trying using &quot;hatch&quot; but I don&#39;t know how to do it around their neighboard and can expand </description>
    </item>
    <item>
      <title>Re: Accessing variables from sorted agentsets in a list</title>
      <pubDate>Mon, 20 May 2013 12:50:37 GMT</pubDate>
      <dc:creator>briandermo</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16631</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16631</guid>
      <description>Thanks very much Seth! Simple in the end but was causing me a lot of frustration. onwards! Brian</description>
    </item>
    <item>
      <title>Comparing two dates in Netlogo</title>
      <pubDate>Mon, 20 May 2013 12:50:24 GMT</pubDate>
      <dc:creator>manal_417@...</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16630</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16630</guid>
      <description>Hi All, I&#39;m trying to define two variables in Netlogo as dates and then check which one is greater than the other. I found that there is the date-and-time data</description>
    </item>
    <item>
      <title>Cell Behavior Model</title>
      <pubDate>Mon, 20 May 2013 12:50:18 GMT</pubDate>
      <dc:creator>Anish Khattar</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16629</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16629</guid>
      <description>Hi, I am trying to model a certain behavior of cells. In the model I have a group of patches which are blue and the blue patches form a grid of squares. The</description>
    </item>
    <item>
      <title>Re: How to calculate absolute difference between two numbers when on</title>
      <pubDate>Sat, 18 May 2013 21:33:38 GMT</pubDate>
      <dc:creator>kaatje.speelman</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16628</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16628</guid>
      <description>Thanks for your replies!! I jumped to conclusions.. with your explanations I realized a made a mistake somewhere else which was causing my incorrect outcome.. </description>
    </item>
    <item>
      <title>Re: Accessing variables from sorted agentsets in a list</title>
      <pubDate>Sat, 18 May 2013 11:35:45 GMT</pubDate>
      <dc:creator>Seth Tisue</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16627</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16627</guid>
      <description>... briandermo&gt; Hello all I am designing a network with nodes and weighted briandermo&gt; links. In order that calculations of flow through each node briandermo&gt;</description>
    </item>
    <item>
      <title>Accessing variables from sorted agentsets in a list</title>
      <pubDate>Fri, 17 May 2013 17:26:19 GMT</pubDate>
      <dc:creator>briandermo</dc:creator>
      <link>http://groups.yahoo.com/group/netlogo-users/message/16626</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/netlogo-users/message/16626</guid>
      <description>Hello all I am designing a network with nodes and weighted links. In order that calculations of flow through each node is done using the correct link and node</description>
    </item>

  </channel>
</rss>
<!-- rss1.grp.bf1.yahoo.com uncompressed Wed May 22 20:06:00 PDT 2013 -->
