gpt4 book ai didi

python - 如何解决 '' ComplexWarning : Casting complex values to real discards the imaginary part''?

转载 作者:行者123 更新时间:2023-12-05 01:40:27 27 4
gpt4 key购买 nike

我想使用具有复杂条目的矩阵来构造一个新矩阵,但它给了我警告

"ComplexWarning: Casting complex values to real discards the imaginary part".

因此,新矩阵的条目都是实数。如何让所有的条目都保持虚部?

这是包含我的原始代码的图像

This is the image containing my original code

最佳答案

我知道我在哪里发出这个警告。

当我构造一个新的空矩阵时,我需要添加 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com