第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在多個(gè)相同大小的數(shù)組上應(yīng)用復(fù)雜函數(shù)以在 python 中使用 numpy 創(chuàng)建新的相同大小的數(shù)組

如何在多個(gè)相同大小的數(shù)組上應(yīng)用復(fù)雜函數(shù)以在 python 中使用 numpy 創(chuàng)建新的相同大小的數(shù)組

叮當(dāng)貓咪 2023-06-13 16:26:02
我有一個(gè)獲取 x 和 y 位置并執(zhí)行最近鄰搜索的函數(shù)。我想將此函數(shù)應(yīng)用于兩個(gè)數(shù)組,以便我可以獲得數(shù)組中每個(gè)點(diǎn)的函數(shù)結(jié)果。我在這里給出了一些示例數(shù)據(jù)和我想應(yīng)用的實(shí)際功能。我還調(diào)用了單點(diǎn)函數(shù)。我如何將此函數(shù)應(yīng)用于出現(xiàn)在我的數(shù)組xs和中的匹配索引處的每個(gè) x,y 對(duì)ys?import scipy.spatialimport scipyimport numpy as npimport pandas as pddef est_bathymetry(x,y,bathymetry_data,gsl_level=1278.3,n=4):        grid_xy=np.array([x,y]).T        def do_kdtree(grid_xy,points, n):    #This function gets the kd tree for the sample, then returns the closest    #points to each grid node as indices        points=points[:2,:]        points=list(points.transpose())        mytree = scipy.spatial.cKDTree(points)        dist, indexes = mytree.query(grid_xy, k=n, n_jobs=-1)        return dist, indexes            dist, indexes = do_kdtree(grid_xy,bathymetry_data.iloc[:,0:2].values.T,n)            avg_bath=np.nanmean(np.take(bathymetry_data['Bathymetry'], indexes))        return avg_bath    #create sample datax=np.linspace(0,10,11,endpoint=True)xs=np.tile(x,(11,1))ys=xs.Tnp.random.seed(123)data=pd.DataFrame([np.random.uniform(0,10,100),np.random.uniform(0,10,100),np.random.normal(2000,100,100)]).Tdata.columns=['Lat','Long','Bathymetry']#example of function working on single inputavg_bathymetry=est_bathymetry(x=np.min(xs),y=np.min(ys),bathymetry_data=data)
查看完整描述

1 回答

?
UYOU

TA貢獻(xiàn)1878條經(jīng)驗(yàn) 獲得超4個(gè)贊

我發(fā)現(xiàn)使用 np.vectorize 我可以矢量化并應(yīng)用該函數(shù),這個(gè)函數(shù)實(shí)際上是適用的,但我需要?jiǎng)h除其他輸入。唯一的問題是運(yùn)行完整數(shù)據(jù)集需要 225 天。將不得不回到繪圖板。



查看完整回答
反對(duì) 回復(fù) 2023-06-13
  • 1 回答
  • 0 關(guān)注
  • 128 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)