分からないこと
> plt.plot(xs, ys2, 'g', label=r'$\beta=0.8*\sin(2\pi ft+\lambda/2)$')
の部分において
0. 2\pi ft
はどのような意味なのか(piはmath.piではないのか、ftとは何なのか )
\lambda/2
のlmbdaはラムダ式ではないのか書式が違うのはなぜなのか
python
1import numpy as np 2import matplotlib.pyplot as plt 3import math 4 5sample_rate = 1.0e5 6carrier_freq = 5.0e2 7duration = 10.0e-3 8 9xs = np.arange(0, duration, 1/sample_rate) 10ys1 = np.sin(2.0*np.pi*carrier_freq*xs) #直接波 11 12#遅延プロファイル 13delayp = [10.0, 23.0, 28.0, 31.0, 45.0, 71.0] 14lossp = [-10, -18, -33, -41, -47, -51, -55] 15phasep = [30.0, 170.0, -210.0, -35.0, -14.0, 137.0] 16 17#逆送のマルチパス波 piをたすことで位相を逆にしている、また減衰度を0.8としている 18ys2 = np.sin(2.0*np.pi*carrier_freq*xs+np.pi)*0.8 19ys3 = ys1 + ys2 #合成波 20 21fig = plt.figure() 22ax = fig.gca() 23plt.plot(xs, ys1, 'b', label=r'$\alpha=\sin(2\pi ft)$') 24plt.plot(xs, ys2, 'g', label=r'$\beta=0.8*\sin(2\pi ft+\lambda/2)$') 25plt.plot(xs, ys3, 'r', label=r'$\alpha+\beta$') 26plt.xlabel('Time(sec)') 27plt.ylabel('sin(2*pi*f*t)') 28ax.legend(loc='upper right') 29ax.set_title('Multipaths synthesized signal') 30 31plt.show() 32
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。