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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 8757 - 8786 of 9893   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8757
i hope it help you, the problem was in identification which turtles should be the donor, and some small technical problem. i re-formulate it below cheers imron...
imbron
Offline Send Email
Mar 1, 2009
2:48 pm
8758
Thanks Seth. That's better, but still having some issues...maybe you can look at it. I'm trying to simulate taxes. Agents are born, move, eat, and die. They...
adamscopy
Offline Send Email
Mar 1, 2009
2:48 pm
8759
Hi James, You were right about that. I'm still having trouble, though. Maybe you can try it out... I'm trying to simulate taxes. Agents are born, eat, move,...
adamscopy
Offline Send Email
Mar 1, 2009
2:48 pm
8760
Hello everybody. I have a model in which i have to solve some non-linear equations. In each run, the model calculates some parameters and then i have to use...
martin.atlas@...
martin.atlas
Offline Send Email
Mar 2, 2009
11:43 am
8761
Hi! i am trying to write in a file, and i am working with a breed. i want to write a line with some information for every car, so i do file-open "datos.txt" ...
nittpr
Offline Send Email
Mar 2, 2009
11:44 am
8762
Hi there I'm quite new to all this but i have a problem; when I use ask patches [set pcolor red] set (pcolor-of of patch-at 0 max-pycor) black which I could...
msffh
msffh@...
Send Email
Mar 2, 2009
11:44 am
8763
... The preferred way of setting another agent's variable in NetLogo 4 is: ask patch 0 max-pycor [ set pcolor black ] The new syntax for referring to another...
Jim Lyons
jimlyons37
Offline Send Email
Mar 2, 2009
3:42 pm
8764
What you show seems like it should work, but... I would put the FILE-PRINT at the end of the print sequence, not the beginning. Also, you should probably omit...
James Steiner
askturtlezero
Offline Send Email
Mar 3, 2009
2:26 am
8765
Do you mean this: (wikipedia) quote(( In the parabolic fractal distribution, the logarithm of the frequency or size of entities in a population is a quadratic ...
James Steiner
askturtlezero
Offline Send Email
Mar 3, 2009
2:26 am
8766
I would like to add some information to my question. They are not complex equations. For example: A * X ^ (1/3) + B * X ^ (2/5) - C = 0 But I don't know how to...
Martín Atlas
martin.atlas
Offline Send Email
Mar 3, 2009
2:26 am
8767
Hi all, I'm trying to copy numbers from nested lists to Microsoft Office Excel spreadsheets. Specifically, I'm trying to get data to appear in more than one...
samdobbie@...
samdobbie...
Offline Send Email
Mar 3, 2009
2:26 am
8768
Hi all: I want to create soil environement in my NetLogo model. I want to set my patches in such a way that 40% of my patches are of 2 mm and 30% of my patches...
pratibhasapkota
Offline Send Email
Mar 3, 2009
8:28 pm
8769
to setup ca crt 1 [set heading 0] end to go let degree 0.5 loop [ if count turtles > num_t [stop] ask turtles with [(who < 1)] [ fd degree rt 10 hatch 1 [rt 90...
Yevgeny Patarakin
y_paty
Offline Send Email
Mar 3, 2009
8:28 pm
8770
Hello everybody. I have a new question about Netlogo. In my model, i have ants going from point A (assume the upper right corner of the world) to point B...
martin.atlas@...
martin.atlas
Offline Send Email
Mar 3, 2009
8:28 pm
8771
The equation a*x^(1/3) + b*x^(2/5)-c = 0 can be solved by iteration; Rewrite the equation in iterative form as: xn=((c-b*x^(2/5))/a)^3 use x=1 as a starting...
Mike Sandy
michael953583
Offline Send Email
Mar 4, 2009
12:25 am
8772
I mean this: http://gameprogrammer.com/fractal.html Heres what they say, they have pictures that help better explain the process on the webpage... "Here's the...
btmarti25
Offline Send Email
Mar 4, 2009
2:18 am
8773
... adamscopy> Thanks Seth. That's better, but still having some adamscopy> issues...maybe you can look at it. Sorry, this is a bit too much code for me to...
Seth Tisue
sethtisue
Offline Send Email
Mar 4, 2009
2:18 am
8774
A better method for solving Martin's equation is to use Newton iteration, which generates a faster result (if possible). to-report newton-iter [a b c] let x 1...
Mike Sandy
michael953583
Offline Send Email
Mar 4, 2009
1:23 pm
8775
Hi PS this may not be the most elegant way to do it, but I think it will work: have a patches-own variable, say "depth": ask patches [ set depth 0 ] ask n-of...
Martin Jepsen
m_rudbeck
Offline Send Email
Mar 4, 2009
1:23 pm
8776
... pratibhasapkota> Hi all: I want to create soil environement in my pratibhasapkota> NetLogo model. I want to set my patches in such a way pratibhasapkota>...
Seth Tisue
sethtisue
Offline Send Email
Mar 4, 2009
7:04 pm
8777
... Tricky. How about something like: patches-own [ soil ] to setup ; set 40% of the patches to 2mm ask n-of round(.4 * count patches) patches [ set soil 2 ] ;...
Jim Lyons
jimlyons37
Offline Send Email
Mar 4, 2009
7:04 pm
8778
That almost did it imron. Thank you!! The donors function is working perfectly, but the "weak" turtles are not getting the donation. I tried moving the...
adamscopy
Offline Send Email
Mar 4, 2009
7:04 pm
8779
OK. I thought you could try running it. It's a tax and redistribution simulation. I plan to play with it and see if there is anything to learn about tax...
adamscopy
Offline Send Email
Mar 4, 2009
7:05 pm
8780
Thank you very much Every one's idea works perfect. PS...
pratibhasapkota
Offline Send Email
Mar 4, 2009
11:05 pm
8781
Is it possible to disown "value" from the turtles once i've already writen this "turtles-own [value]" in the setup? i mean, can i disown it later on?...
chinoka21
chinoka21@...
Send Email
Mar 4, 2009
11:05 pm
8782
It used to be in the address: http://www-u.life.uiuc.edu/~sstoddar/files/nlogo.vim But this link is dead. Anyone still has this file? I've been googling for a...
chinoka21
chinoka21@...
Send Email
Mar 4, 2009
11:05 pm
8783
... Fun stuff! Here's some rough code I tossed together that seems to do the job. Note that edge-wrapping should be turned on, and that the world width and...
fsondahl
Offline Send Email
Mar 5, 2009
1:15 pm
8784
The -owns section defines the properties that your turtles can possess. If, for some reason, during the model run, you no longer require a value and want to...
James Steiner
askturtlezero
Offline Send Email
Mar 5, 2009
5:46 pm
8785
I need to create a local variable that is a single random whole number with the range 1 to 10. I know how to create a list in this way but is there a command...
donaldmbraxton
donaldmbraxton@...
Send Email
Mar 5, 2009
5:46 pm
8786
Hello all, I am currently working on a project to import velocity data from a hydrological maps. The maps are scaled from red-blue. I imported the bitmap as...
btmarti25
Offline Send Email
Mar 5, 2009
5:47 pm
Messages 8757 - 8786 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