-
kkfft
用c语言实现fft和iir滤波器的设计。可以和matlab中的函数fft,filter等效。(used language fft and IIR filter design. Matlab can and the function fft, filter equivalent.)
- 2020-07-03 01:40:01下载
- 积分:1
-
thread-timer-(D7)
This component has the same functionality of the default Timer component, but it provides a higher resolution, until a maximum of 1 milisecond.(This component has the same functionality of the default Timercomponent, but it provides a higher resolution, until a maximum of 1milisecond. )
- 2016-05-08 05:30:08下载
- 积分:1
-
LAN-monitoring-system
局域网监控系统采用vc++6.0编写,需要oracle数据库(LAN monitoring system)
- 2013-12-13 22:03:19下载
- 积分:1
-
2dflocking
在没有虚拟领导者的情况下能够实现多智能体编队,并能够避免智能体之间的碰撞(Under no circumstances can the virtual leader of the multi-agent formation, and the ability to avoid collisions between agent)
- 2016-02-14 12:32:11下载
- 积分:1
-
Multi-agent-formation
可以实现多智能体编队,即多个分散智能体聚集到一块且相互之间保持一定的距离向前运动(Can achieve multi-agent formations that gathered more than a dispersion agent, and maintain a certain distance each other moving forward)
- 2016-02-20 10:25:53下载
- 积分:1
-
S32K144 without RTOS
IAR S32K144代码 IO口程序,通过外部中断,(IAR S32K144 code IO port program, through external interrupt,)
- 2020-12-14 16:39:15下载
- 积分:1
-
C# 视频监控系统
【实例简介】C# 视频监控系统
- 2021-11-25 00:44:50下载
- 积分:1
-
ALU
说明: ALU示例(对于单周期cpu的Modelsim SE-64 10.4进行仿真)(Alu example (simulation for Modelsim se-64 10.4 of single cycle CPU))
- 2020-05-15 18:57:47下载
- 积分:1
-
DrawPicture
计算机图形学的例子,包含有图形平移,旋转,3d显示和消隐等(Examples of computer graphics, including graphic translation, rotation, 3d display and blanking)
- 2012-11-20 22:44:35下载
- 积分:1
-
C# pop3 邮件接收程序
private void Connect_Click(object sender, System.EventArgs e) { //将光标置为等待状态 Cursor cr = Cursor.Current; Cursor.Current = Cursors.WaitCursor; String a ,b,c; //用110端口新建POP3服务器连接 Server = new TcpClient(PopServer.Text, 110); Status.Items.Clear(); try { //初始化 NetStrm = Server.GetStream(); RdStrm = new StreamReader(Server.GetStream()); Status.Items.Add(RdStrm.ReadLine()); //登录服务器过程 Data = "USER " Username.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); Data = "PASS " Password.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); //向服务器发送STAT命令,从而取得邮箱的相关信息:邮件数量和大小 Data = "STAT" CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); //Status.Items.Add(RdStrm.ReadLine()); //改变按钮的状态 Connect.Enabled = false; Disconnect.Enabled = true; Retrieve.Enabled = true; //将光标置回原来状态 Cursor.Current = cr; } catch (InvalidOperationException err) { Status.Items.Add("Error: " err.ToString()); } }
- 2014-11-02下载
- 积分:1