If we have a list (data1) of 201*201 members as {a,b,c} (which a,b and c are numeric), how can we save them into another list (data2) containing just c's in the groups of 100 member as (I can use of Last but the problem is gathering them to 100 member groups)
data1={{a1,b1,c1},{a2,b2,c2},....,{a201,b201,c201},......,{a40401,b40401,c40401}}
data2={{c1,c2,c3,......c100},{c101,c102,....c200},{c201,...c300},....}
Map[],Last[], andPartition[]? – J. M.'s missing motivation Feb 18 '16 at 12:56