我检查了我的python终端(在Enthought Canopy IDE中)中指针的大小
import ctypes
print (ctypes.sizeof(ctypes.c_voidp) * 8)
我有一个 64 位架构,使用起来numpy.float64
很好。但我不能使用np.float128
?
np.array([1,1,1],dtype=np.float128)
或者
np.float128(1)
结果是:
AttributeError: 'module' object has no attribute 'float128'
我正在运行以下版本:
sys.version_info(major=2, minor=7, micro=6, releaselevel='final', serial=0)