這可能是一個非常愚蠢的問題,但我試圖谷歌關鍵字像less and greater signs in data type of numpy
,並沒有找到任何參考。|,>和<in numpy datatype
在numpy
的doc,
x = np.array([(1.0, 2), (3.0, 4)], dtype=[('x', float), ('y', int)])
輸出
array([(1.0, 2), (3.0, 4)],
dtype=[('x', '<f8'), ('y', '<i4')])
但我的電腦上,輸出
array([(1.0, 2), (3.0, 4)],
dtype=[('x', '>f8'), ('y', '>i4')])
什麼在dtype
做<
和>
平均和爲什麼有這個區別?
我的猜測是它的東西像「小/大端int/float #bits」......可能與系統有關。 –