jeckforlete 发表于 2010-5-2 10:38:03

请教一段netlogo程序的写法

我想把在每一个patch上的turtles经过一定标准选择选出一个,然后把这一个turtle的一个属性变量传递给patch,写了下面的代码。

主要有两个疑问:

第一,我是用of引用turtle的属性的,可是通不过编译。应该用什么办法?
第二,set expectation那一句里的para-a和para-b也应该是被选出来的turtle包含的参数,可是目前这个写法似乎不能体现出来这个意思。


各位高手能不能帮忙看看啊?提前谢过!

to form-expectation
    ask patches [
      let active-strategy min-one-of ( turtles-here with [ length ( remove true (map [?1 = ?2] predictor descriptor) ) = length ( remove "#" predictor )]) [ strategy-error ]
      set expectation para-a * ( pre-price + pre-dividend ) + para-b
      set trader-error strategy-error of active-strategy
      set trader-type strategy-type of active-strategy ]
end
页: [1]
查看完整版本: 请教一段netlogo程序的写法