跳至內容

File:Raised-cosine-impulse.svg

頁面內容不支援其他語言。
這個檔案來自維基共享資源
維基百科,自由的百科全書

原始檔案(SVG 檔案,表面大小:585 × 314 像素,檔案大小:44 KB)


摘要

描述
English: Impulse response of raised-cosine filter given by

for different values of .

Created using python and matplotlib library.

from numpy import *
from matplotlib.pyplot import *
from mpl_toolkits.axes_grid.axislines import SubplotZero

def makeT(lim=1):	# Make the X-axis
	result = linspace(-lim,lim,100)
	return result

def sinc(x):		# define normlized sinc function
	return sin(pi*x)/(pi*x)
	
def raisedCos(x,B=0,T=1):	# define raised cosine function
	return sinc(x/T) * cos(pi*B*x/T) / (1 - (4*B*B*x*x/(T*T)) )
	
fig = figure(figsize=(8,4))
ax = SubplotZero(fig,111)
fig.add_subplot(ax)
ax.grid(True)
ax.set_xticks([-3,-2,-1,0,1,2,3])
ax.set_xticklabels(["-3T","-2T","-T","0","T","2T","3T"])
ax.set_ylim((-.3,1.2))
ax.set_yticklabels([])
for direction in ["xzero","yzero"]:
	ax.axis[direction].set_axisline_style("->")
	ax.axis[direction].set_visible(True)
for direction in ["left","right","bottom","top"]:
	ax.axis[direction].set_visible(False)

t = makeT(3.5)
ax.plot(t,raisedCos(t),label=r"$\beta=0$")
ax.plot(t,raisedCos(t,0.25),label=r"$\beta=0.25$")
ax.plot(t,raisedCos(t,0.5),label=r"$\beta=0.5$")
ax.plot(t,raisedCos(t,1.),label=r"$\beta=1$")

ax.text(3.5,0.,"t")
ax.text(0.1,1.1,"h(t)")
ax.legend()
#fig.show()
fig.savefig("Raised-cosine-impulse.svg",bbox_inches="tight",\
	pad_inches=.15)
日期
來源 自己的作品
作者 Krishnavedala
其他版本 File:Raised-cosine-impulse.png

授權條款

我,本作品的著作權持有者,決定用以下授權條款發佈本作品:
w:zh:共享創意
姓名標示 相同方式分享
您可以自由:
  • 分享 – 複製、發佈和傳播本作品
  • 重新修改 – 創作演繹作品
惟需遵照下列條件:
  • 姓名標示 – 您必須指名出正確的製作者,和提供授權條款的連結,以及表示是否有對內容上做出變更。您可以用任何合理的方式來行動,但不得以任何方式表明授權條款是對您許可或是由您所使用。
  • 相同方式分享 – 如果您利用本素材進行再混合、轉換或創作,您必須基於如同原先的相同或兼容的條款,來分布您的貢獻成品。
GNU head 已授權您依據自由軟體基金會發行的無固定段落、封面文字和封底文字GNU自由文件授權條款1.2版或任意後續版本,對本檔進行複製、傳播和/或修改。該協議的副本列在GNU自由文件授權條款中。
您可以選擇您需要的授權條款。

說明

添加單行說明來描述出檔案所代表的內容

在此檔案描寫的項目

描繪內容

沒有維基數據項目的某些值

維基媒體使用者名稱 繁體中文 (已轉換拼寫):​Krishnavedala
作者姓名字串 繁體中文 (已轉換拼寫):​Krishnavedala

著作權狀態 繁體中文 (已轉換拼寫)

有著作權 繁體中文 (已轉換拼寫)

檔案來源 Chinese (Taiwan) (已轉換拼寫)

上傳者的原創作品 繁體中文 (已轉換拼寫)

檔案歷史

點選日期/時間以檢視該時間的檔案版本。

日期/時間縮⁠圖尺寸用戶備⁠註
目前2011年8月28日 (日) 21:58於 2011年8月28日 (日) 21:58 版本的縮圖585 × 314(44 KB)KrishnavedalaCorrected the X-axis labels
2011年6月3日 (五) 17:44於 2011年6月3日 (五) 17:44 版本的縮圖585 × 314(44 KB)Krishnavedala{{Information |Description ={{en|1=Impulse response of raised-cosine filter given by <math>h(t)=\mathrm{sinc} \left( \frac{t}{T} \right) \cos\left(\frac{\pi\beta t}{T}\right) \left(\frac{1}{1 - \frac{4\beta^2 t^2}{T^2} }\

下列頁面有用到此檔案:

全域檔案使用狀況

以下其他 wiki 使用了這個檔案: