国产精品婷婷久久久久久,日本中文字幕平台,天天躁夜夜躁av天天爽,国内极度色诱视频网站

信號與系統(tǒng)中卷積的visual basic實(shí)現(xiàn).doc

約48頁DOC格式手機(jī)打開展開

信號與系統(tǒng)中卷積的visual basic實(shí)現(xiàn),信號與系統(tǒng)中卷積的visual basic實(shí)現(xiàn)全文46頁19376字?jǐn)⑹鲈敱M摘 要針對課本上卷積公式理解起來困難的問題, 筆者利用具有可視性和面向事件特征的visual basic 6.0 設(shè)計(jì)了一個(gè)軟件來演示卷積的全過程。卷積過程分連續(xù)信號和離散信號兩種情況表示,并可用窗體中的按鈕使卷積在離散信號和連續(xù)信號兩種情況間...
編號:68-32333大小:1.02M
分類: 論文>計(jì)算機(jī)論文

內(nèi)容介紹

此文檔由會(huì)員 周伯通 發(fā)布

信號與系統(tǒng)中卷積的Visual Basic實(shí)現(xiàn)
全文46頁 19376字 敘述詳盡
摘 要

針對課本上卷積公式理解起來困難的問題, 筆者利用具有可視性和面向事件特征的Visual Basic 6.0 設(shè)計(jì)了一個(gè)軟件來演示卷積的全過程。
卷積過程分連續(xù)信號和離散信號兩種情況表示,并可用窗體中的按鈕使卷積在離散信號和連續(xù)信號兩種情況間切換。通過列表框選擇兩個(gè)輸入信號的類型、幅度、長度,并用反褶按鈕實(shí)現(xiàn)信號反褶,用計(jì)時(shí)器和平移按鈕實(shí)現(xiàn)信號的平移、相乘、積分,并在窗體界面上用圖形及動(dòng)畫顯示出來,用顯示卷積結(jié)果按鈕實(shí)現(xiàn)動(dòng)態(tài)顯示卷積結(jié)果的功能,用顯示數(shù)據(jù)按鈕可以實(shí)現(xiàn)顯示卷積結(jié)果的數(shù)據(jù)的功能。卷積過程中可以停止平移過程還可以重新選擇輸入信號的類型、幅度及長度。利用卷積圖解方法可以形象直觀的表現(xiàn)卷積的全過程,便于理解,提高教學(xué)效率。

關(guān)鍵詞 離散信號;連續(xù)信號;卷積;反褶;Visual Basi
Abstract

Considering the problem that the convolution formula in textbook is hard to be understood, the author makes a software using Visual Basic 6.0 which has the character of video and Object Oriented .The software can demonstrate the full process of convolution.
The convolution process can be shown with two kinds of types,that is consecutive signal and discrete signal. A button is used to achieve the switch of consecutive signal and discrete signal, also the type ,ample and length of two input signals can be chosen using a list ,a button called reversing is used to reverse the signal, show the animated picture of signal’s move ,product and integral on form using a timer and a button called move ,calculate and show the picture of convolution result by a button called show .The data result of convolution is shown by another button .When the convolution is on ,the process can be stopped and the type, ample, and length of the input signal can be changed .Using the scheme method, the full process of convolution visual can be shown .It is convenient to be understood and helpful to improve the efficiency of teaching .

Keywords consecutive signal; discrete signal ; convolution; inverse ; Visual Basic
目 錄
摘 要 i
Abstract ii
第1章 緒論 1
1.1 課題背景 1
1.1.1 卷積的發(fā)展過程 1
1.1.2 設(shè)計(jì)本軟件的目的 1
1.2 使用工具Visual Basic 6.0 1
第2章 Visual Basic 6.0的使用方法 4
2.1 用Visual Basic開發(fā)應(yīng)用程序的一般步驟 4
2.2 Visual Basic應(yīng)用程序的結(jié)構(gòu)與工作方式 5
2.2.1 Visual Basic應(yīng)用程序的構(gòu)成 5
2.2.2 事件驅(qū)動(dòng) 6
2.3 數(shù)據(jù)輸入輸出 7
2.3.1 數(shù)據(jù)輸出—Print方法 7
2.3.2 數(shù)據(jù)輸入—Input Box函數(shù) 8
2.3.3 MsgBox函數(shù) 8
2.4 數(shù)組 9
2.4.1 數(shù)組的定義 9
2.4.2 動(dòng)態(tài)數(shù)組 10
2.4.3 控件數(shù)組 11
2.5 多窗體程序設(shè)計(jì) 11
2.6 本章小結(jié) 12
第3章 卷積的原理及數(shù)值計(jì)算 13
3.1 卷積的原理 13
3.1.1 連續(xù)時(shí)間系統(tǒng)的卷積原理 13
3.1.2 離散時(shí)間系統(tǒng)的卷積原理 16
3.2 卷積的數(shù)值計(jì)算 17
3.2.1 連續(xù)時(shí)間系統(tǒng)卷積的數(shù)值計(jì)算 17
3.2.2 離散時(shí)間系統(tǒng)卷積的數(shù)值計(jì)算 18
3.3 本章小結(jié) 20
第4章 用Visual Basic實(shí)現(xiàn)卷積的界面設(shè)計(jì) 21
4.1 概述 21
4.2 封面窗體Form1的設(shè)計(jì) 21
4.2.1 封面窗體的功能及屬性 21
4.2.2 標(biāo)簽框的功能及屬性 21
4.2.3 命令按鈕的功能及屬性 22
4.2.4 計(jì)時(shí)器的功能及屬性 23
4.3 連續(xù)信號窗體Form2的設(shè)計(jì) 23
4.3.1 命令按鈕的功能及屬性 23
4.3.2 標(biāo)簽框的功能及屬性 24
4.3.3 列表框的功能及屬性 25
4.3.4 計(jì)時(shí)器的功能及屬性 25
4.3.5 圖片框數(shù)組的功能及屬性 25
4.4 離散信號窗體Form3的設(shè)計(jì) 25
4.4.1 標(biāo)簽框的功能及屬性 25
4.4.2 列表框的功能及屬性 26
4.4.3 計(jì)時(shí)器的功能及屬性 26
4.4.4 圖片框數(shù)組的功能及屬性 26
4.5 窗體Form4的設(shè)計(jì) 27
4.6 本章小結(jié) 27
第5章 用Visual Basic實(shí)現(xiàn)卷積的功能 28
5.1 封面窗體Form1的功能實(shí)現(xiàn) 28
5.2 Form2的功能實(shí)現(xiàn) 28
5.2.1 選擇信號模塊 29
5.2.2 畫圖模塊 30
5.2.3 反褶模塊 31
5.2.4 平移模塊 32
5.2.5 顯示卷積結(jié)果圖形模塊 34
5.2.6 顯示卷積結(jié)果數(shù)據(jù)模塊 34
5.3 Form3的功能實(shí)現(xiàn) 34
5.3.1 選擇信號模塊 34
5.3.2 畫圖模塊 35
5.3.3 平移模塊 36
5.4 Form4的功能實(shí)現(xiàn) 36
5.5 整體功能實(shí)現(xiàn)示例 36
5.6 本章小結(jié) 36
結(jié) 論 37
參考文獻(xiàn) 38
源程序 40
仿真結(jié)果 41
致謝 42

參考文獻(xiàn)
1 鄭君里,應(yīng)啟珩,楊為理.信號與系統(tǒng)(第二版).北京:高等教育出版社,2000,61~62
2 劉炳文.精通Visual Basic 6.0中文版. 北京: 電子工業(yè)出版社, 1999,1~2
3 徐逸芝,用Visual Basic制作課件,西安航空技術(shù)高等??茖W(xué)校學(xué)報(bào),2001,19(1):7~8
4 沈?yàn)槊?,陳秀青.用Visual Basic制作多媒體教材,中國計(jì)量學(xué)院學(xué)報(bào),2000,增刊:50~51
5 阿地力.依米提,孫文革.卷積積分的幾種方法,新疆師范大學(xué)學(xué)報(bào),2003,22(2):22~23