我想将同一个数组的 2 个部分组合成一个复杂的数组:
Data[:,:,:,0] , Data[:,:,:,1]
这些不起作用:
x = np.complex(Data[:,:,:,0], Data[:,:,:,1])
x = complex(Data[:,:,:,0], Data[:,:,:,1])
我错过了什么吗?numpy 不喜欢对复数执行数组函数吗?这是错误:
TypeError: only length-1 arrays can be converted to Python scalars