-
datag
这是一个简单的数据生成器,可以生成0到1之间的n维数据(This is a simple data generator can generate 0 to 1 between the n-dimensional data)
- 2009-12-06 20:13:19下载
- 积分:1
-
basika
经典算法巴斯卡三角的简单实现,vs2010编译通过(Simple implementation of the classic algorithm Pascal triangle, vs2010 compiled by)
- 2012-10-30 13:22:26下载
- 积分:1
-
@163
数值计算方法中高斯主元素消元法 在vc环境中运行 用于解方程组(Numerical methods in the Gaussian elimination method, the main elements of the environment in vc run for the solution of equations)
- 2011-10-19 20:28:39下载
- 积分:1
-
etc修改工具
说明: 问道修改ETC工具,问道修改商城工具,详细请看说明(Ask about modifying ETC tools, ask about modifying mall tools, see the instructions for details.)
- 2020-06-25 09:40:02下载
- 积分:1
-
绘制由摄像头采集视频的直方图
这是一个C/C++的程序,利用opencv库来绘制由摄像头采集视频的直方图,对于学习opencv的人有很大帮助,解压后可直接运行
- 2022-08-10 05:00:00下载
- 积分:1
-
c#FORM服务器客户端UDP通讯实例
服务器客户端UDP广播通话 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Net.Sockets;using System.Net;namespace NetServer{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { this.Close(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { //使用UDP协议发送数据 Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); //设置端口号 IPEndPoint ieps = new IPEndPoint(IPAddress.Broadcast, 8900); socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1); //将发送数据转换为字节数组 byte[] bytess = System.Text.Encoding.Unicode.GetBytes(textBox1.Text); socket.SendTo(bytess, ieps); socket.Close(); } }}
- 2020-05-31下载
- 积分:1
-
VCMATLAB
这里是一些VC与matlab混合编程的最新技术资料。有些是介绍了在VC ++调用Matlab的常用方法及各自特点,还有一些是介绍VC与matlab混合编程的实例。(Here are some VC mixed with matlab programming information on the latest technologies. Some are introduced in VC++ calling Matlab common methods and their own characteristics, and some is to introduce the VC with the matlab programming examples of mixing.)
- 2010-01-24 18:58:50下载
- 积分:1
-
AD9854
AD9854允许输出的信号频率高达150MHZ,而数字调制输出频率可达100MHZ。通过内部高速比较器正弦波转换为方波输出,可用作方便的时钟发生器。(AD9854 allows the output signal frequency up to 150MHZ, and digital modulation output frequency up to 100MHZ. Through an internal high-speed comparator is converted to square wave sine wave output, the clock generator can be used as a convenience.)
- 2021-05-07 05:28:36下载
- 积分:1
-
lcd
单片机实现温度的测量和液晶显示 ds18b20 LCD1602(MCU temperature measurements and liquid crystal display ds18b20 LCD1602)
- 2011-06-29 19:04:17下载
- 积分:1
-
CommunicationStudio
说明: 利用QT开发读取6维力传感器数据,并实时显示数值波动的界面。使用到串口通讯、图形界面等技术(The interface of reading 6-D force sensor data and real-time displaying numerical fluctuation is developed by using QT. Used to Serial Communication, Graphic Interface and other technologies)
- 2019-05-23 10:28:32下载
- 积分:1