日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程语言 > python >内容正文

python

python xyz_python中xyz坐标的欧几里德距离

發(fā)布時(shí)間:2023/12/20 python 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python xyz_python中xyz坐标的欧几里德距离 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

使用生成器表達(dá)式的簡(jiǎn)單解決方案From PEP 289 Generator Expressions

Rationale

Experience with list comprehensions has shown their widespread utility

throughout Python. However, many of the use cases do not need to have a full list created in memory. Instead, they only need to iterate over the elements one at a time.

因?yàn)槟悴恍枰4嬷虚g結(jié)果

可能你有一個(gè)大的數(shù)據(jù)集

以及itertools標(biāo)準(zhǔn)庫(kù)模塊中的^{},因?yàn)槟枰?jì)算數(shù)據(jù)集中每對(duì)有趣的點(diǎn)的距離。在$ cat euclid.py

from scipy.spatial.distance import euclidean

from itertools import combinations

lines = ['HETATM 1 H10 XSHQ 0 10.139 2.231 0.091 1.00 0.00 H',

'HETATM 2 N1 XSHQ 0 9.641 1.386 -0.104 1.00 0.00 N',

'HETATM 3 H9 XSHQ 0 9.773 1.133 -1.063 1.00 0.00 H',

'HETATM 4 C1 XSHQ 0 8.245 1.531 0.230 1.00 0.00 H']

H_lines = (line for line in lines if line[-1]=='H')

H_lists = (line.split() for line in H_lines)

H_data = ((int(tok[1]), [float(x) for x in tok[5:8]]) for tok in H_lists)

H_dist = {(i[0], j[0]):euclidean(i[1], j[1])

for i, j in combinations(H_data, 2)}

for m, n in H_dist:

print('Distance between points %d and %d is %.6f'%(

m, n, H_dist[m, n]))

$ python3 euclid.py

Distance between points 1 and 3 is 1.634404

Distance between points 1 and 4 is 2.023995

Distance between points 3 and 4 is 2.040842

$

總結(jié)

以上是生活随笔為你收集整理的python xyz_python中xyz坐标的欧几里德距离的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。