Pythonで、[(x1,y1), (x2,y2), ...] という座標群をそれぞれ(a, b)だけ平行移動した
[(x1+a,y1+b), (x2+a,y2+b), ...]というリストを作りたいと考えています。
listをnumpy.ndarrayにすることで要素ごとの計算はできたのですが、その後、
n行2列の配列に戻すことはできてもn個のタプルのリストにすることができません。
どのようにすればよいのでしょうか。
Python
1import numpy as np 2 3def position_offset(pos, offset): 4 newpos = np.array(pos) + np.array(offset) 5 print (newpos) 6 print (newpos.tolist()) 7 print (tuple(newpos)) 8 print (tuple(newpos.tolist())) 9 10pos=[(10,20), (30,40), (50,60)] 11offset = (10,10) 12position_offset(pos, offset) 13 14# 以下、結果 15# newpos 16[[20 30] 17 [40 50] 18 [60 70]] 19 20# newpos.tolist() 21[[20, 30], [40, 50], [60, 70]] 22 23# tuple(newpos) 24(array([20, 30]), array([40, 50]), array([60, 70])) 25 26# tuple(newpos.tolist()) 27([20, 30], [40, 50], [60, 70])

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/01/11 06:59