freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

信號(hào)與系統(tǒng)課程設(shè)計(jì)--信號(hào)與系統(tǒng)matlab實(shí)驗(yàn)系列(已修改)

2025-01-28 10:08 本頁面
 

【正文】 信號(hào)與系統(tǒng)課程設(shè)計(jì)報(bào)告2013—2014學(xué)年第二學(xué)期課程名稱:信號(hào)與系統(tǒng)設(shè)計(jì)題目:信號(hào)與系統(tǒng)Matlab實(shí)驗(yàn)系列學(xué) 院:專業(yè)班級(jí):學(xué) 號(hào):姓 名:指導(dǎo)老師: 目 錄實(shí)驗(yàn)一 連續(xù)時(shí)間信號(hào)時(shí)域分析 1實(shí)驗(yàn)二 離散時(shí)間信號(hào)時(shí)域分析 5實(shí)驗(yàn)三 連續(xù)時(shí)間系統(tǒng)時(shí)域分析 9實(shí)驗(yàn)四 離散時(shí)間系統(tǒng)時(shí)域分析 11 實(shí)驗(yàn)五 連續(xù)時(shí)間信號(hào)頻域分析 13實(shí)驗(yàn)六 連續(xù)時(shí)間系統(tǒng)頻域分析 18實(shí)驗(yàn)七 信號(hào)采樣與重建 24實(shí)驗(yàn)八 傳輸函數(shù)與系統(tǒng)特性 28感想與心得 32實(shí)驗(yàn)一 連續(xù)時(shí)間信號(hào)時(shí)域分析一、 實(shí)驗(yàn)內(nèi)容用MATLAB表示連續(xù)信號(hào):。用MATLAB表示抽樣信號(hào)(sinc(t))、矩形脈沖信號(hào)(rectpuls(t, width))及三角脈沖信號(hào)(tripuls(t, width, skew))。編寫如圖3的函數(shù)并用MATLAB繪出滿足下面要求的圖形。二、 源程序及執(zhí)行結(jié)果分析1. 用MATLAB表示連續(xù)信號(hào):。1(1)源程序%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% f=A*exp(alpha*t) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%A=1。alpha=。t=10::10。f=A*exp(alpha*t)。plot(t,f)title(39。f(t)=A*exp(alpha*t)39。)。xlabel(39。t39。) 。ylabel(39。f(t)39。) 。grid on%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% f=A*cos(omega0*t+phi) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%t=10::10。A=1。omega0=pi。phi=pi/3。f=A*cos(omega0*t+phi)。plot(t,f)title(39。 f=A*cos(omega0*t+phi)39。)。xlabel(39。t39。) 。ylabel(39。f(t)39。) 。grid on%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% f=A*sin(omega0*t+phi) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%t=10::10。A=1。omega0=pi。phi=pi/3。f=A*sin(omega0*t+phi)。plot(t,f)title(39。f=A*sin(omega0*t+phi)39。)。xlabel(39。t39。) 。ylabel(39。f(t)39。) 。grid on2(2)執(zhí)行結(jié)果用MATLAB表示抽樣信號(hào)(sinc(t))、矩形脈沖信號(hào)(rectpuls(t, width))及三角脈沖信號(hào)(tripuls(t, width, skew))。(1)源程序%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% f=sinc(t) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%t=20::20。y=sinc(t/pi)。plot(t,y)title(39。抽樣信號(hào)Sa(t)39。)。grid on %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 矩形脈沖信號(hào) y = rectpuls(t,w) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% t=10::10。w=1。 %脈寬為1f=rectpuls(t,w)。 %(自變量t,脈寬w)plot(t,f)。title(39。f(t)=rectpuls(t,w)39。)。xlabel(39。t39。) 。axis([2,2,2,2])。grid on%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 三角脈沖信號(hào) y=tripuls(t,width, skew) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% t=10::10。w=1。 %脈寬為1f=tripuls(t,w)。 %(自變量t,脈寬w)plot(t,f)。title(39。f(t)=tripuls(t,w)39。)。xlabel(39。t39。) 。axis([2,2,2,2])。grid on3(2)執(zhí)行結(jié)果編寫如圖3的函數(shù)并用MATLAB繪出滿足下面要求的圖形。圖3(1)源程序%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%t=20::20。w1=12。w2=4。 %分別設(shè)定矩形脈沖和三角脈沖的脈寬f1=4*rectpuls(t6,w1)。 %使用單位矩形脈沖和單位三角脈沖來對(duì)圖象進(jìn)行描述f2=3*tripuls(t6,w2)。 f=f1+f2。 %波的疊加 figure(1)。 %創(chuàng)建繪圖窗口1 % 子圖1:作出原函數(shù)圖f(t)subplot(2,3,1)。plot(t,f)。 title(39。f=f(t)=4*rectpuls(t6,w1)+3*tripuls(t6,w2)39。)。xlabel(39。t39。) 。axis([20,20,10,10])。grid on % 子圖2:作出f(t)subplot(2,3,2)。plot(t,f)title(39。f=f(t)39。)。xlabel(39。t39。) 。axis([20,20,10,10])。grid on % 子圖3:作出f(t2)subplot(2,3,3)。plot(t2,f)title(39。f=f(t2)39。)。xlabel(39。t39。) 。axis([20,20,10,10])。grid on % 子圖4:作出f(12*t)subplot(2,3,4)。plot(12*t,f)title(39。f=f(12*t)39。)。xlabel(39。t39。) 。axis([30,10,10,10])。grid on % 子圖5:作出f(*t+1)subplot(2,3,5)。plot(*t+1,f)title(39。f=f(*t+1)39。)。xlabel(39。t39。) 。axis([20,20,10,10])。grid on4 (2)執(zhí)行結(jié)果如上圖,作出了1個(gè)原函數(shù)圖像,和4個(gè)變換后的函數(shù)圖像 實(shí)驗(yàn)二 離散時(shí)間信號(hào)時(shí)域分析一、 實(shí)驗(yàn)內(nèi)容用MATLAB表示離散信號(hào):。已知離散序列波形如圖4所示,試用MATLAB繪出滿足下列要求的序列波形。(1) f[k2]u[k] (2) f[k] (3) f[k+2] (4) f[k2]u[k2]圖4若,計(jì)算。二、源程序及執(zhí)行結(jié)果分析用MATLAB表示離散信號(hào):。5(1)源程序%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % (1)f= a.^k.*stepfun(k,0)。%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%a=。 %設(shè)定底數(shù)ak=0:10。 %設(shè)定自變量u=stepfun(k,0)。 %設(shè)定單位階躍序列f= a.^k.*stepfun(k,0)。stem(k,f,39。filled39。)。 axis([1,10, 0, 2])。 title(39。f= a.^k.*stepfun(k,0)39。)。xlabel(39。k39。) 。ylabel(39。f39。) 。grid on%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % (2)f= A.*sin(k)。%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%clear。A=。k=0:10。f= A.*sin(k)。stem(k,f,39。filled39。)。 axis([1,11, 1, 1])。 title(39。f= A.*sin(k)。39。)。xlabel(39。k39。) 。ylabel(39。f39。) 。grid on(2)執(zhí)行結(jié)果已知離散序列波形如圖4所示,試用MATLAB繪出滿足下列要求的序列波形。(1) f[k2]u[k] (2) f[k] (3) f[k+2] (4) f[k2]u[k2](1)源程序6%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear。 k=6:5。 %設(shè)定離散自變量u=stepfun(k,0)。 %設(shè)定單位階躍序列f=[0 1 3 6 10 15 14 12 9 5 0 0] 。 %設(shè)定離散的序列值 figure(1)。 %創(chuàng)建繪圖窗口1 % 子圖1:作出原序列圖f[k]subplot(2,3,1)。stem(k,f,39。filled39。)。 %畫出火柴桿圖(離散序列圖)axis([7,7, 0, 20])。 title(39。f=f[k]。39。)。xlabel(39。k39。) 。ylabel(39。f39。) 。grid on % 子圖2:作出序列圖f[k2]*u[k]subplot(2,3,2)。stem(k2,f.*stepfun(k,0),39。filled39。)。 axis([7,7, 0, 20])。 title(39。f=f[k2]*u[k]。39。)。
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫吧 www.dybbs8.com
公安備案圖鄂ICP備17016276號(hào)-1