Hi there !
I'm new in NetLogo . I want to create 20 random point in netlogo , so I use a 
two matrix : 2(5*2)
I use this :

extensions [matrix]

to-report setup [n m generator]
  report matrix:from-row-list n-values n [n-values m [runresult generator]]
end

to result
print setup 5 2 task [random 10]
end

to mymean
 let mylist mean result
  show mylist
end

to transposed
  print matrix:transpose result
end
;==================================
But I have error both in transposed and mymean . by the way how can 
thanks for any help

-- 
You received this message because you are subscribed to the Google Groups 
"netlogo-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to