-
chebyshevnihe
说明: 数值分析中的chebyshev拟合程序,学习数值分析的同学可以参考参考(Numerical Analysis of chebyshev fit program, students study and numerical analysis can refer to reference)
- 2011-03-24 15:07:01下载
- 积分:1
-
shiyangdukaqi
RC500读卡模块实验RC500读卡模块实验RC500读卡模块实验RC500读卡模块实验RC500读卡模块实验(RC500 RC500 reader module reader module experiment experimental experiments reader module RC500 RC500 RC500 reader module reader module test experiment)
- 2013-12-01 21:16:43下载
- 积分:1
-
Camdemo
Camshift算法,即"Continuously Adaptive Mean-Shift"算法,是一种自适应的运动跟踪算法。它主要通过视频图像中运动物体的颜色信息来达到跟踪目的。(Camshift algorithm, namely " Continuously Adaptive Mean-Shift" algorithm is an adaptive motion tracking algorithm. It is primarily the color information of the object' s movement through the video images to achieve tracking purposes.)
- 2014-01-11 19:45:29下载
- 积分:1
-
C# 指定主机和端口发消息的实现
Visual C# 指定主机和端口发消息的实现例子,支持和远程主机发送消息,本例子可学习到很多实用的网络方法的用法,以下代码是本功能的核心实现:
richTextBox1.Text = string.Empty;
//实例化UdpClient对象
UdpClient udpclient = new UdpClient(Convert.ToInt32(textBox2.Text));
//调用UdpClient对象的Connect建立默认远程主机
udpclient.Connect(textBox1.Text, Convert.ToInt32(textBox2.Text));
//定义一个字节数组,用来存放发送到远程主机的信息
Byte[] sendBytes = Encoding.Default.GetBytes(textBox3.Text);
//调用UdpClient对象的Send方法将Udp数据报发送到远程主机
udpclient.Send(sendBytes, sendBytes.Length);
//实例化IPEndPoint对象,用来显示响应主机的标识
IPEndPoint ipendpoint = new IPEndPoint(IPAddress.Any, 0);
//调用UdpClient对象的Receive方法获得从远程主机返回的Udp数据报
Byte[] receiveBytes = udpclient.Receive(ref ipendpoint);
//将获得的Udp数据报转换为字符串形式
string returnData = Encoding.Default.GetString(receiveBytes);
richTextBox1.Text = "接收到的信息:" + returnData.ToString();
//使用IPEndPoint对象的Address和Port属性获得响应主机的IP地址和端口号
richTextBox1.Text += "
这条信息来自主机" + ipendpoint.Address.ToString()
+ "上的" + ipendpoint.Port.ToString() + "端口";
//关闭UdpClient连接
- 2022-02-10 10:21:19下载
- 积分:1
-
DoubleStack
数据结构基础内容,两栈共享空间,参考《大话数据结构》(Structural basis of data content, two stacks shared space, refer to Westward data structure )
- 2014-12-06 12:09:30下载
- 积分:1
-
DesktopSnow
QT界面简单的图形移动和鼠标绘图,实现桌面下雪效果,动画效果(QT interface simple graphics movement and mouse drawing to achieve desktop snow effect, animation effect)
- 2019-04-19 15:33:15下载
- 积分:1
-
使用stm32的串口实现fifo队列缓冲读写数据
使用stm32的串口实现fifo队列缓冲读写数据,值得新手学习((Using STM32 serial port to realize FIFO queue buffer read and write data, it is worth learning by novice.))
- 2020-06-20 00:20:02下载
- 积分:1
-
预测控制
说明: 预测控制PPT,方便读者可以更好的学习预测控制,里面包含DMC,MPC,GPC等算法(Ppt of predictive control is convenient for readers to learn better predictive control, including DMC, MPC, GPC and other algorithms)
- 2019-11-03 18:26:46下载
- 积分:1
-
fft_ifft
C语言写的基2fft算法,测试过了结果,比matlab的结果精度还是稍差(fft algorithm in C language.Have testd the result.)
- 2012-02-08 09:29:34下载
- 积分:1
-
xiangsnmp
很好的VC++编程,SNMP的一个应用程的范例,喜欢的下载(Good VC++ Programming, SNMP-way of an application example, likes to download)
- 2008-05-29 23:41:30下载
- 积分:1