Netlogoでは、他のすべてのカメとそれ以外のカメを含むタートルのエージェントセットを作成するにはどうしたらいいですか? this previous answer:私または私の隣人ではないエージェントにどのように尋ねるのですか?
to setup
ca
create-turtles 10 [setxy random-xcor random-ycor]
ask turtles[create-link-to one-of other turtles]
end
to go
ask one-of turtles[
show in-link-neighbors
let poss turtles with [not member? self in-link-neighbors]
show poss
]
end
上記のコードから来た:
これは隣人を除くカメのagentsetを作成するに近いですが、かなりの仕事はしない、
トーマス
をありがとう
あなたは 'other'を探していますか? https://ccl.northwestern.edu/netlogo/docs/dictionary.html#other – Alan