作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用具有复杂条目的矩阵来构造一个新矩阵,但它给了我警告
"ComplexWarning: Casting complex values to real discards the imaginary part".
因此,新矩阵的条目都是实数。如何让所有的条目都保持虚部?
这是包含我的原始代码的图像
最佳答案
我知道我在哪里发出这个警告。
当我构造一个新的空矩阵时,我需要添加 dtype = "complex_"。
例如,
mat__ = np.zeros((k*nboxes,k*nboxes),dtype = 'complex_')
如果我们只是写
mat__ = np.zeros((k*nboxes,k*nboxes))
并对其进行一些操作,例如使用复数矩阵形成一个新矩阵,然后新矩阵将丢弃虚部。
关于python - 如何解决 '' ComplexWarning : Casting complex values to real discards the imaginary part''?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56566584/
考虑以下示例: >>> import numpy as np >>> a = np.array([1.0, 2.1j]) >>> b = np.array(a, dtype=np.float64) /
我想使用具有复杂条目的矩阵来构造一个新矩阵,但它给了我警告 "ComplexWarning: Casting complex values to real discards the imaginary
我是一名优秀的程序员,十分优秀!