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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用包含數(shù)組的單個結(jié)構(gòu)化元素創(chuàng)建數(shù)組

使用包含數(shù)組的單個結(jié)構(gòu)化元素創(chuàng)建數(shù)組

aluckdog 2023-10-06 13:44:24
我有一個像這樣的數(shù)據(jù)類型:>>> dt = np.dtype([('x', object, 3)])>>> dtdtype([('x', 'O', (3,))])一個名為“x”的字段,包含三個指針。我想用這種類型的單個元素構(gòu)造一個數(shù)組:>>> a = np.array([(['a', 'b', 'c'])], dtype=dt)>>> b = np.array([(np.array(['a', 'b', 'c'], dtype=object))], dtype=dt)>>> c = np.array((['a', 'b', 'c']), dtype=dt)>>> d = np.array(['a', 'b', 'c'], dtype=dt)>>> e = np.array([([['a', 'b', 'c']])], dtype=dt)所有這五個語句都會產(chǎn)生相同的錯誤結(jié)果:array([[(['a', 'a', 'a'],), (['b', 'b', 'b'],), (['c', 'c', 'c'],)]],      dtype=[('x', 'O', (3,))])如果我嘗試刪除內(nèi)部列表/數(shù)組,則會收到錯誤:>>> f = np.array([('a', 'b', 'c')], dtype=dt)ValueError: could not assign tuple of length 3 to structure with 1 fields.同樣的錯誤發(fā)生在>>> g = np.array(('a', 'b', 'c'), dtype=dt)我已經(jīng)用完了所有可能的組合來嘗試。我正在尋找的結(jié)果是 array([(['a', 'b', 'c'],)], dtype=[('x', 'O', (3,))])如何創(chuàng)建一個包含指定數(shù)據(jù)類型的一個元素的數(shù)組?到目前為止,我發(fā)現(xiàn)的唯一方法是手動分配:z = np.empty(1, dtype=dt)z['x'][0, :] = ['a', 'b', 'c']或者z[0]['x'] = ['a', 'b', 'c']np.array對于應(yīng)該能夠開箱即用的東西來說,這似乎是一個不必要的解決方法。
查看完整描述

1 回答

?
暮色呼如

TA貢獻1853條經(jīng)驗 獲得超9個贊

In [44]: dt = np.dtype([('x', object, 3)])   # corrected

In [45]: dt

Out[45]: dtype([('x', 'O', (3,))])

In [46]: np.empty(3, dt)

Out[46]: 

array([([None, None, None],), ([None, None, None],),

       ([None, None, None],)], dtype=[('x', 'O', (3,))])

In [47]: np.array([(['a','b','c'],)], dt)

Out[47]: array([(['a', 'b', 'c'],)], dtype=[('x', 'O', (3,))])

輸入格式應(yīng)與輸出格式匹配。


In [48]: arr = np.empty(3, dt)

In [49]: arr['x']

Out[49]: 

array([[None, None, None],

       [None, None, None],

       [None, None, None]], dtype=object)

In [50]: arr['x'][0]

Out[50]: array([None, None, None], dtype=object)

In [51]: arr['x'][0] = ['a','b','c']

In [52]: arr

Out[52]: 

array([(['a', 'b', 'c'],), ([None, None, None],), ([None, None, None],)],

      dtype=[('x', 'O', (3,))])


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

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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