-
DFT
信号与系统试验报告
离散傅立叶变换(DFT)和频谱分析
一、实验内容
1、实验题目
(1)编写DFT、IDFT程序,并验证其正确性(提示:可利用冲激函数进行验证)。
(2)计算信号f(t)=e-at2sin(2∏ft)的离散傅立叶变换(DFT),求其振幅谱,相位谱、振幅最大值对应的频谱(检测主频)以及对发f(t)进行DFT变换的结果实现IDFT变换,并画出图形。
参数选择如下:频率f =30HZ,a=f 2㏑(M),M=2.5
2、通过实验理解信号振幅谱、相位谱的物理意义,掌握DFT、IDFT算法的实现方法。()
- 2008-05-07 10:38:59下载
- 积分:1
-
anneal_SimulatedAnnealing
anneal_SimulatedAnnealing.rar用C语言编写,能弥补Matlab中无现成模拟退火算法函数的不足(anneal_SimulatedAnnealing.rar C language, Matlab can make up for the non-existing simulated annealing function of inadequate)
- 2006-08-13 11:05:01下载
- 积分:1
-
libusb-1.0.9
说明: libusb是用于从Linux,Mac OS X,OpenBSD,NetBSD和Windows用户空间访问USB设备的库。(libusb is a library for USB device access from Linux, Mac OS X,OpenBSD, NetBSD, and Windows userspace.)
- 2020-03-16 15:29:32下载
- 积分:1
-
遗传算法源代码
遗传算法的源程序,里面有基本的遗传算法的各种操作过程,很全面!(genetic algorithm source, there are basic genetic algorithm various operational and very comprehensive!)
- 2005-05-23 10:57:08下载
- 积分:1
-
1
说明: 基于opencv的图像灰度化,将24位彩色图像重新量化为8位灰度图像(gray image)
- 2013-12-12 21:56:49下载
- 积分:1
-
Jhhb
环保局污染设备在线控制系统(商业源码).完整,实用的VC写的控制系统,下位分析设备采样控制系统. (Environmental Protection Agency pollution equipment on-line control system (commercial source). A complete, practical, written in VC control systems, under-sampling analysis equipment control systems.)
- 2010-01-03 18:55:45下载
- 积分:1
-
detours-src-1.2
微软提供的截取Win32 API函数的开发包和例子 (The libraray and example to intercept win32 api function provided by microsoft)
- 2020-10-28 16:49:58下载
- 积分:1
-
164
标准串口和模拟串口4位164动态数码管显示程序
1.CPU :89C51 晶振2MHz
2.在proteus上仿真通过
3. 测试时将部分语句屏蔽 (Standard serial and analog serial 4 164 dynamic digital tube display program 1.CPU: 89C51 crystal 2MHz 2. The proteus simulation through 3 will be part of the statement shield test)
- 2013-05-25 15:29:25下载
- 积分:1
-
fpga0023202323
FPGA时序分析说明。对于高速时钟设计中的时序分析与约束有帮助(FPGA,TIME)
- 2010-11-01 15:49:34下载
- 积分:1
-
C#实现图片中文识别成文本文字,已应用项目中
C#将图片里中文识别成文本文字,中文识别,.net 实现中文识别 支持*.bmp; *.jpg; *.gif; *.jpeg;*.png等图片格式上的中文,文字 识别 【核心代码】 public Form1() { InitializeComponent(); //ocr = new TesseractEngine("./tessdata", "eng", EngineMode.TesseractAndCube);//设置语言 英文 ocr = new TesseractEngine("./tessdata", "chi_sim");//设置语言 中文 // ocr = new TesseractEngine("./tessdata", "jpn");//设置语言 日语 } private void button1_Click(object sender, EventArgs e) { OpenFileDialog filename = new OpenFileDialog(); filename.Filter = "All files(*.*)|*.*|image files(*.bmp)|*.bmp; *.jpg; *.gif; *.jpeg;*.png"; filename.FilterIndex = 2; if (filename.ShowDialog() == DialogResult.OK) { Bitmap bit = new Bitmap(Image.FromFile(filename.FileName.ToString())); Page page = ocr.Process(bit); string str = page.GetText();//识别后的内容 page.Dispose(); pictureBox1.Image = bit; richTextBox1.AppendText(str); } } /// /// 图片颜色区分,剩下白色和黑色 /// /// ///
- 2020-04-24下载
- 积分:1