python 复数归一化处理

python 复数归一化处理

归一化算法

复数格式为 x = a + b i x=a+bi x=a+bi, 归一化算法如下:

x ′ = a ÷ a 2 + b 2 + b i ÷ a 2 + b 2 x' = a\div\sqrt{a^2 + b^2} + bi\div\sqrt{a^2 + b^2} x=a÷a2+b2 +bi÷a2+b2

算法实现

from math import sqrt

def normalize(num):
	# numpy里complex可改为numpy.complex128
    if type(num) == complex:
        real = num.real
        imag = num.imag
        temp = sqrt(real*real+imag*imag)
        real = real/temp
        imag = imag/temp * 1j
        return real + imag
    else:
        return num
        
# 测试        
d = 8 + 2j
print(normalize(d)) # print (0.9701425001453319+0.24253562503633297j)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Alex-Leung

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值