The NetLogo development team at the Center for Connected Learning and Computer-Based Modeling at Northwestern University is pleased to announce the 1.2beta2...
Seth Do your recommend uninstalling NL 1.1 before installing the upgrade? 10q v. much. At 02:18 PM 1/6/2003 -0600, you wrote: Victor G. Mossotti U.S....
Victor G. Mossotti
mossotti@...
Jan 7, 2003 3:46 pm
252
Owen - I am fascinated by your model ... but I guess I don't know enough about complex systems to understand it. I've poked around it a bit, and figured some...
I downloaded what I assumed was the Beta 2 from the website but I find it states it is "Beta1". Is it in fact Beta2 in disguise or am I missing the correct URL...
Hi Jerry. Thanks for the input! ... Interesting you say that: several of us here in Santa Fe are banding together to form a web of complexity consultants....
Owen Densmore
owen@...
Jan 7, 2003 7:39 pm
255
... Vicotr> Do you recommend uninstalling NL 1.1 before installing the Vicotr> upgrade? Not necessary -- the different versions will coexist on your hard drive...
... Nitin> Hello Quite an intesting program to draw grids. Can we also Nitin> write one in which the grid is drawn by patches? Yeah, I'd suggest something...
I'd like to expand on some of the items in the 1.2beta release ... I hope you're all actually seeing improved performance with your models. If your model runs...
I am finding that the models might run too fast - in that it is hard to see what is going on, with turtles flying all over the screen. Of course, I am running...
Michael Gizzi
mgizzi@...
Jan 13, 2003 7:00 pm
259
... Michael> I am finding that the models might run too fast - in that it Michael> is hard to see what is going on, with turtles flying all over Michael> the...
... Yes, we agree. We have a speed slider in our internal versions. We intend to release it along with a new interface for graphics window settings in the 1.3...
More items for the NetLogo wish-list: * When you have a large number of turtle-monitor windows open, it would be nice to be able to close all of them with a...
Dear All, I know that my question might seem trivial, but is there any way to generate a number between a couple of user defined bounds in Netlogo? Is it...
Alberto Trobia
albertotrobia@...
Jan 15, 2003 4:33 pm
263
... Might this be what you are looking for ? to-report rndm [a b] report ((random (b - a)) + a) end...
schmickl@...
Jan 15, 2003 5:30 pm
264
... That sounds like a good and doable suggestion. ... In many Logos such as Microworlds Logo, this is done with a "key?" and "readchar" primitive. You check...
Hi, I would just do something like this: "set variable_name (15 + (random 27))" if you were looking for the 15 to 42 bound. Hope this is of some use... matt ...
Matthew Koehler
mattkoehler@...
Jan 15, 2003 5:31 pm
266
Thanks to Matthews and schmickl@.... Both their solutions, which in fact are identical, work perfectly. Thanks again! ... Alberto Trobia, Ph.D. Associate...
Alberto Trobia
albertotrobia@...
Jan 15, 2003 8:21 pm
267
Uri - I wasn't sure from your reply on this whether "key?" and "readchar" primitives could be added to NetLogo so we could have models respond to keypresses. ...
... (e.g.) ... never saw ... Jerry- Are you talking about the following message? http://groups.yahoo.com/group/netlogo-users/message/244 If you aren't, please...
Alberto 15 + random 27 should do it. Boyce Baker...
BJBaker94@...
Jan 16, 2003 6:15 am
270
Dear All, I've got another problem, which is related to the one posted yesterday about generating random numbers between bounds. I want to generate a number...
Alberto Trobia
albertotrobia@...
Jan 16, 2003 2:29 pm
271
... - -10 = +10 i.e. random(20)-10 Michel ... -- Michel Loos <loos@...>...
Michel Loos
loos@...
Jan 16, 2003 2:42 pm
272
... No, you have (random(10 -(-10)) + (-10) that gives -10 + random(20) VB ... Vladimir Batagelj, University of Ljubljana, Department of Mathematics Jadranska...
vladimir.batagelj@...
Jan 16, 2003 2:47 pm
273
The NetLogo random command always give a random number between 0 and the specified number. So you just need to get a random number over your range -- in this...
Edmund Hazzard
ehazzard@...
Jan 16, 2003 2:49 pm
274
Alberto, I'm not a netlogo programmer, but I can see that the algorithm should work. It appears that you have a slight error in your sign (+/-)...
Randolph K. Larsen
rklarsen@...
Jan 16, 2003 3:07 pm
275
Well, one more time, the solution was quite close to me. Yep! I forgot the signs =:-o Thanks to Michel, Vladimir, Ed and Randolph. Alberto ... Alberto Trobia,...
Alberto Trobia
albertotrobia@...
Jan 16, 2003 4:29 pm
276
Albert, I haven't touch Netlogo yet, but I am planning to do it. However, I know various variants of Logo. I would like to add a small correction to Randolph's...
Dr. Andrzej Cichy
acichy@...
Jan 16, 2003 4:29 pm
277
Dear Andrzej, you're absolutely right. Netlogo, unlike other programming languages (btw my programming expertise dates back, and is limited to the Commodore 64...
Alberto Trobia
albertotrobia@...
Jan 17, 2003 3:43 pm
278
How about a method for "block-commenting" a whole set of statements? It can get very tedious to add and remove semi-colons from the beginnings of ranges of...
... Jerry> Uri - I wasn't sure from your reply on this whether "key?" and Jerry> "readchar" primitives could be added to NetLogo so we could have Jerry> models...