国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python模擬脈沖星偽信號頻率實例代碼

2020-02-16 11:27:06
字體:
供稿:網(wǎng)友

脈沖星假信號頻率的相對路徑論證。

首先看一下演示結(jié)果:

實例代碼:

import numpy as npimport matplotlib.pyplot as pltimport matplotlib.animation as animation# Fixing random state for reproducibilitynp.random.seed(19680801)# Create new Figure with black backgroundfig = plt.figure(figsize=(8, 8), facecolor='black')# Add a subplot with no frameax = plt.subplot(111, frameon=False)# Generate random datadata = np.random.uniform(0, 1, (64, 75))X = np.linspace(-1, 1, data.shape[-1])G = 1.5 * np.exp(-4 * X ** 2)# Generate line plotslines = []for i in range(len(data)):  # Small reduction of the X extents to get a cheap perspective effect  xscale = 1 - i / 200.  # Same for linewidth (thicker strokes on bottom)  lw = 1.5 - i / 100.0  line, = ax.plot(xscale * X, i + G * data[i], color="w", lw=lw)  lines.append(line)# Set y limit (or first line is cropped because of thickness)ax.set_ylim(-1, 70)# No ticksax.set_xticks([])ax.set_yticks([])# 2 part titles to get different font weightsax.text(0.5, 1.0, "MATPLOTLIB ", transform=ax.transAxes,    ha="right", va="bottom", color="w",    family="sans-serif", fontweight="light", fontsize=16)ax.text(0.5, 1.0, "UNCHAINED", transform=ax.transAxes,    ha="left", va="bottom", color="w",    family="sans-serif", fontweight="bold", fontsize=16)def update(*args):  # Shift all data to the right  data[:, 1:] = data[:, :-1]  # Fill-in new values  data[:, 0] = np.random.uniform(0, 1, len(data))  # Update data  for i in range(len(data)):    lines[i].set_ydata(i + G * data[i])  # Return modified artists  return lines# Construct the animation, using the update function as the animation# director.anim = animation.FuncAnimation(fig, update, interval=10)plt.show()

腳本運行時間:(0分0.065秒)

總結(jié)

以上就是本文關(guān)于Python模擬脈沖星偽信號頻率實例代碼的全部內(nèi)容,希望對大家有所幫助。感興趣的朋友可以繼續(xù)參閱本站其他相關(guān)專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 鹰潭市| 九龙县| 句容市| 许昌县| 黑龙江省| 富锦市| 延津县| 额济纳旗| 白水县| 察雅县| 基隆市| 江城| 瑞金市| 凌源市| 邢台县| 灵台县| 平乐县| 天台县| 吐鲁番市| 娄底市| 桐庐县| 邻水| 固阳县| 卫辉市| 郯城县| 广安市| 松滋市| 炎陵县| 柞水县| 盘锦市| 融水| 盐城市| 丰城市| 和林格尔县| 班戈县| 朝阳市| 台安县| 澄迈县| 东阳市| 闻喜县| 南丰县|