“样本match”的版本间差异

来自Shiyin's note
跳到导航 跳到搜索
(以“*idlutils中的spherematch比较适合球面上的match *多维的match: matchnd”为内容创建页面)
 
 
(未显示同一用户的12个中间版本)
第1行: 第1行:
==python==
*idlutils中的spherematch比较适合球面上的match
ID1=list(zip(Brick,BOID))
ID2=list(zip(Brick2,BOID2))
xy,x_ind,y_ind=np.intersect1d(ID1,ID2,assume_unique=True,return_indices=True)
参见[https://numpy.org/doc/stable/reference/generated/numpy.intersect1d.html]


==[[idl中数组match]]==
*多维的match: matchnd

2023年7月17日 (一) 13:12的最新版本

python

ID1=list(zip(Brick,BOID))
ID2=list(zip(Brick2,BOID2))
xy,x_ind,y_ind=np.intersect1d(ID1,ID2,assume_unique=True,return_indices=True)

参见[1]

idl中数组match