Seth and James! Thank you very much for your help! The new code is working properly. The background of my idea is that 'points' are the centroids of voronoi...
Thanks James! I have been using your code suggestions for swarming. My code looks like this at the moment: ask turtles [ let magx sum [ [ xcor ] of patches...
Hi Giorgio If you operate with a velocity and want a distance calucated as vel*dT you must define the spatial resolution of the patches and use that as a...
hi, maybe this will help: turtles-own [cooperate?] to setup ca crt 10 [ set cooperate? 1 ;;;; agent will cooperate setxy random-pxcor random-pycor ] end to go ...
Konrad Fuks
konrad.fuks@...
Feb 2, 2009 10:40 pm
8647
hello, i've got problem with maths. Numbers are generated as fallows: set cost (10 + random 31) / 10 ;;; so min is 1 and max is 4 when i sum two such generated...
Konrad Fuks
konrad.fuks@...
Feb 2, 2009 10:41 pm
8648
Hi! The built-in reporters DX DY and DZ contain the cartisian components of the unit vector for the turtle at the current heading. In otherwords, for a given...
... Konrad> hello, i've got problem with maths. Numbers are generated as Konrad> fallows: set cost (10 + random 31) / 10 ;;; so min is 1 and max Konrad> is 4...
Dear all, I have a problem that i seem not able to solve. I have a set of nodes and links, i weight the links through the link- lenght procedure. Thus ...
Hi, I am new to NetLogo. Need help in how agent "sense" imported drawing. I used the command "import-pcolors" to import a bitmap file and want the turtle to...
... nobletruth1> Hi, I am new to NetLogo. Need help in how agent "sense" nobletruth1> imported drawing. I used the command "import-pcolors" to nobletruth1>...
Well, I'm going to guess it's a punctuation issue. You probably meant this: ask turtles [ let magx sum ( [ xcor ] of patches in-radius 3 with [ Influence != 0...
Since walkers are assigned to a node, you can store that node in the walker in another walkers-own variable: walkers-own [ walker-dist current-node ] This...
Some thoughts on selecting random number ranges: The range you describe there is from 10 to 40 -- you divide by 4 and that gives you values between 1.0 and...
Hi, I'm running a model simulating hunting on animal populations. If the hunting pressure is set to be high enough, the entire population can crash. If I'm...
Ruscena Wiederholt
rwiederh@...
Feb 4, 2009 3:18 am
8659
Yes, thanks! i solved the problem. To: netlogo-users@...: seth@...: Tue, 3 Feb 2009 06:28:25 -0600Subject: Re: [netlogo-users]...
Hey guys ! I'm a French student and I'm studying in an Australian university at the moment. For my first important work my supervisor asks me to open a model ...
I'm wondering if there is a command or an easier way to pair up all the turtles. I'm going to keep them paired and I want the pairings to be non-overlapping....
Hello netlogo-users, my name is Andreas Pape. (Sorry about the email address) Let me describe what I am trying to do: I have a model of a natural resource...
I acknowledge this as a total newb question, but could you post a copy of the syntax to make gis:turtle-dataset work? I'm banging my head against the keyboard...
You are on the right track, but it can be done without using WHILE, and there's some other NetLogo ideas that will make things easier down the road. The first...
Hi you all, I am trying to create a demand curve for a representative agent with two lists of the same length and distributed according to some number of...
... ruebeckc> I'm wondering if there is a command or an easier way to pair ruebeckc> up all the turtles. Here's one way to pair up existing turtles: crt 100 ...
It so happens that I am working on developing such a tool (tentatively dubbed "BehaviorSearch") as part of my thesis work. Unfortunately, this tool is still in...
What you need is N-VALUES. Check the programming dictionary to read the details. set ChokePrice precision random-normal 9 1 2 set SurvQuantity precision...
Thanks Forrest! I'll be happy to share my code. I'll get something together and send it to you (should we take his conversation off-list? I'm not sure what...
Hi All: So I have been simulating influence using vectors to control turtle movement per James' suggestions. He said I ought to use reporters, but the...