Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一对 numpy uint32,它们都是 uint64 的一半。如何轻松连接它们?
即我有类似的东西
w = np.uint32(775329792) x = np.uint32(46919588) wx = np.uint64(?)
您可以使用位移运算符
wx = (w << 32) + x;
上面使用 w 作为最重要的 32 位,然后将 x 添加为最不重要的 32 位。