-
C# 树状 组织结构图 类似直销组织 源码
C# 树状 组织结构图 类似直销组织 源码
- 2013-10-03下载
- 积分:1
-
fft
关于快速傅里叶FFT变换的一个小程序,很有帮助。(a small program about the FFT transform , very helpful)
- 2013-03-06 10:24:56下载
- 积分:1
-
bianchengzhuji
编程珠玑有一条项链,它由 N 个随机排列的红、白和蓝色的珠子组成(3< =N< =350(Abas programming there is a necklace, which consists of N random with red, white and blue components of the beads (3 < = N < = 350)
- 2016-02-15 06:45:37下载
- 积分:1
-
i2c_master_slave_pic
This I2C library contains the following functionalities:
- master/slave communication
- timeout in case of bus failure
- self recovery after timeout
- possibility to write one of 32 bytes slave registers
In the archive you can find the hardware schematic, some photos of the working platform, the required libraries and an working example. In the example the master MCU writes 2 bytes to the slave MCU which then sums them together. Then the MCU read the result and print it on the LCD. In case of I2C failure, either a TIMEOUT or FAILURE message will be printed on the LCD depending of which line was break. The MCU uses for both master and slave was PIC16F887. It use internal clock at 8Mhz so no cristal is required.
- 2017-07-15 03:09:44下载
- 积分:1
-
FiveChess
网络五子棋系统,网络五子棋功能较完整的实现,可以参考一下(Backgammon systems, networks function more complete realization of backgammon, you can refer to)
- 2020-12-09 11:59:19下载
- 积分:1
-
Sourcecode-V1.0
ePhoto for compare between production line scan barcode and employee to see picture
- 2013-12-27 17:48:35下载
- 积分:1
-
不确定信息融合
实现数据的简单DS融合,里面包含已有的五种数据的,利用贝叶斯、随机森林、k近邻分类器分类,最后融合(Simple DS fusion of data, which contains five kinds of data, uses Bayesian, random forest, k-nearest classifier to classify, and finally fuses.)
- 2018-12-04 16:03:00下载
- 积分:1
-
MSP430F5529实例程序
说明: 包括多个基本例程,ad,da,led,pwm(Intelligent tracking car)
- 2020-06-18 13:00:01下载
- 积分:1
-
USB CAN总线上位机程序
USB CAN总线上位机程序,用于iTek cAN卡的上位机程序,很好用,增加一键开始采集
- 2022-03-05 21:15:12下载
- 积分:1
-
C# SQL语句查询指定区间内的数据库内容
C# 查询数据库信息,具体到本例中,是查询第10到第20名的数据,这在平时的数据库运用中,十分实用,比如查询指定区间内的成绩、销售业绩等,将查询出的数据给予一定的等级,本程序查询到的数据将返回DataTable对象:
string P_Str_ConnectionStr = string.Format(//创建数据库连接字符串
@"server=WIN-GI7E47AND9RLS;database=db_TomeTwo;uid=sa;pwd=");
string P_Str_SqlStr = string.Format(//创建SQL查询字符串
@"SELECT TOP 10 * FROM (SELECT TOP 20 * FROM tb_Grade ORDER BY 总分 DESC) AS st ORDER BY 总分 ASC");
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(//创建数据适配器
P_Str_SqlStr, P_Str_ConnectionStr);
DataTable P_dt = new DataTable();//创建数据表
P_SqlDataAdapter.Fill(P_dt);//填充数据表
return P_dt;//返回数据表
- 2022-11-06 22:25:03下载
- 积分:1