特级做A爰片毛片免费69,永久免费AV无码不卡在线观看,国产精品无码av地址一,久久无码色综合中文字幕

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

約48頁DOC格式手機打開展開

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

內(nèi)容介紹

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

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

針對課本上卷積公式理解起來困難的問題, 筆者利用具有可視性和面向事件特征的Visual Basic 6.0 設計了一個軟件來演示卷積的全過程。
卷積過程分連續(xù)信號和離散信號兩種情況表示,并可用窗體中的按鈕使卷積在離散信號和連續(xù)信號兩種情況間切換。通過列表框選擇兩個輸入信號的類型、幅度、長度,并用反褶按鈕實現(xiàn)信號反褶,用計時器和平移按鈕實現(xiàn)信號的平移、相乘、積分,并在窗體界面上用圖形及動畫顯示出來,用顯示卷積結果按鈕實現(xiàn)動態(tài)顯示卷積結果的功能,用顯示數(shù)據(jù)按鈕可以實現(xiàn)顯示卷積結果的數(shù)據(jù)的功能。卷積過程中可以停止平移過程還可以重新選擇輸入信號的類型、幅度及長度。利用卷積圖解方法可以形象直觀的表現(xià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 設計本軟件的目的 1
1.2 使用工具Visual Basic 6.0 1
第2章 Visual Basic 6.0的使用方法 4
2.1 用Visual Basic開發(fā)應用程序的一般步驟 4
2.2 Visual Basic應用程序的結構與工作方式 5
2.2.1 Visual Basic應用程序的構成 5
2.2.2 事件驅(qū)動 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 動態(tài)數(shù)組 10
2.4.3 控件數(shù)組 11
2.5 多窗體程序設計 11
2.6 本章小結 12
第3章 卷積的原理及數(shù)值計算 13
3.1 卷積的原理 13
3.1.1 連續(xù)時間系統(tǒng)的卷積原理 13
3.1.2 離散時間系統(tǒng)的卷積原理 16
3.2 卷積的數(shù)值計算 17
3.2.1 連續(xù)時間系統(tǒng)卷積的數(shù)值計算 17
3.2.2 離散時間系統(tǒng)卷積的數(shù)值計算 18
3.3 本章小結 20
第4章 用Visual Basic實現(xiàn)卷積的界面設計 21
4.1 概述 21
4.2 封面窗體Form1的設計 21
4.2.1 封面窗體的功能及屬性 21
4.2.2 標簽框的功能及屬性 21
4.2.3 命令按鈕的功能及屬性 22
4.2.4 計時器的功能及屬性 23
4.3 連續(xù)信號窗體Form2的設計 23
4.3.1 命令按鈕的功能及屬性 23
4.3.2 標簽框的功能及屬性 24
4.3.3 列表框的功能及屬性 25
4.3.4 計時器的功能及屬性 25
4.3.5 圖片框數(shù)組的功能及屬性 25
4.4 離散信號窗體Form3的設計 25
4.4.1 標簽框的功能及屬性 25
4.4.2 列表框的功能及屬性 26
4.4.3 計時器的功能及屬性 26
4.4.4 圖片框數(shù)組的功能及屬性 26
4.5 窗體Form4的設計 27
4.6 本章小結 27
第5章 用Visual Basic實現(xiàn)卷積的功能 28
5.1 封面窗體Form1的功能實現(xiàn) 28
5.2 Form2的功能實現(xiàn) 28
5.2.1 選擇信號模塊 29
5.2.2 畫圖模塊 30
5.2.3 反褶模塊 31
5.2.4 平移模塊 32
5.2.5 顯示卷積結果圖形模塊 34
5.2.6 顯示卷積結果數(shù)據(jù)模塊 34
5.3 Form3的功能實現(xiàn) 34
5.3.1 選擇信號模塊 34
5.3.2 畫圖模塊 35
5.3.3 平移模塊 36
5.4 Form4的功能實現(xiàn) 36
5.5 整體功能實現(xiàn)示例 36
5.6 本章小結 36
結 論 37
參考文獻 38
源程序 40
仿真結果 41
致謝 42

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