聚類的python實現(1)

1.創建數據 創建一個(100,2)的數組 np.random.randint(-20, 20, size=(100, 2)) 2.隨機取點並計算距離 隨機取2個100以內的整數作爲點的索引,並在data中取出 index1 = random.choice(range(100)) index2 = random.choice(range(100)) if index1 == index2:
相關文章
相關標籤/搜索