-
a database management system! Nothing in the data
一个数据库的管理系统!含概了数据的备份
主要是用做学生后勤信息的管理!-a database management system! Nothing in the data-backup is mainly used to make students logistics information management!
- 2022-01-25 14:52:10下载
- 积分:1
-
用罗盘模块3轴磁力计HMC5883L整合
Arduino的草图与罗盘模块三轴磁力计HMC5883L整合。它能做什么:测量地球磁场在三个轴,具有1-2度的精度为每个轴,其可单独或一起使用的三维计算个别读数附近的磁源的措施,原强度(高斯)在三个方向上的3轴罗盘模块测量磁场 - 或轴,标记为X,Y和Z在其最简单的形式中,模块可以作为一个基本的罗盘找到地球磁北极。罗盘模块还可以感测附近的磁源,例如那些引起磁铁或电场的相对强度。作为传感器检测在三维磁性,它可以决定向这些源的相对距离和方向。
- 2023-01-29 09:25:03下载
- 积分:1
-
都是习题,我要程序,不得不这样!请多包含!
都是习题,我要程序,不得不这样!请多包含!-Exercises are, I want to procedures to do! Please include!
- 2022-05-14 19:46:31下载
- 积分:1
-
MPSK信号调制方式识别仿真,可产生B,4,8PSK信号加噪声进行仿真,学习信号分析的可以参考...
MPSK信号调制方式识别仿真,可产生B,4,8PSK信号加噪声进行仿真,学习信号分析的可以参考-MPSK modulation signal recognition simulation, can generate B, 4,8 PSK signal plus noise simulation, the study of signal analysis can refer to
- 2023-02-20 07:15:03下载
- 积分:1
-
学习linux的好文档,RH文件,很有用处,对学习linux.
学习linux的好文档,RH文件,很有用处,对学习linux.-learning linux good documentation, RH documents useful to the study of linux.
- 2022-03-26 03:27:27下载
- 积分:1
-
RADIUS authentication billing services, and pure C language code.
RADIUS协议的认证计费服务,纯C语言代码。-RADIUS authentication billing services, and pure C language code.
- 2022-10-16 07:30:03下载
- 积分:1
-
这是一个模拟一些简单物理现象的小程序,如小桥过河之类的,运行程序时需要把CCBP文件夹包含在头文件。...
这是一个模拟一些简单物理现象的小程序,如小桥过河之类的,运行程序时需要把CCBP文件夹包含在头文件。-This is a simple simulation of the physical phenomena of small programs, such as the bridge across the river like the program to run when the need CCBP folder contains the header files.
- 2023-03-01 03:00:04下载
- 积分:1
-
This code uses the bmp map as the main interface, the main card to monitor the h...
此代码使用bmp图作为主要界面,主要实现以监控卡为硬件基础,实现摄像头监控。-This code uses the bmp map as the main interface, the main card to monitor the hardware basis for the realization of camera surveillance.
- 2022-01-25 16:36:19下载
- 积分:1
-
画高
画过高速PCB电路板的人,应该用过阻抗计算软件吧,这个就是一个很好的软件,希望对你们有所帮助。-painted high-speed PCB circuit boards, should impedance calculation software used it, This is a very good software, and I hope to help you.
- 2022-07-26 10:43:47下载
- 积分:1
-
CoStream 无缓存 Pipe Stream
翻译 maninwest@Codeforge 作者:Sergey Nozhenko@CodeProject介绍:CoStream 是的 PipeStream 无缓存替代选择。背景在生产者/消费者模式下,如果我们知道一个消费者确定要读取stream 读到结束或者如果不能读到结束就处理,那么同步stream 就不需要维护自己的内部缓存,完全依赖于 Read 方法调用者的缓存。在Read 方法中,CoStream 保存到目标缓存的引用并等待,直至完成。而 write 方法从源缓存中复制数据到目标缓存,会给读取者发送信号缓存已准备就绪或者需要等待期 Read 调用(如果来源缓存中有未消耗的数据剩下或者返回到Writer 调用者)。使用代码CoStream 不能在单个话题中使用。应该至少有两个,读取和写入话题。两者都需要关闭(或处理)stream,一边对方可以继续到结束。测试程序在 XmlDocument 中加载了一些 xml 文件。然后将其写入到 CoStream 的实例Static CoStream costream = new TestCoStream();
static string outpath;
static void Main(string[] args)
{
// ...
XmlDocument doc = new XmlDocument();
doc.Load(args[0]);
outpath = args[1];
var reading_thread = new Thread(ReaderBody);
reading_thread.Start();
using (var pipe = XmlWriter.Create(costream, new XmlWriterSettings { CloseOutput = true }))
doc.Save(pipe);
reading_thre
- 2022-03-17 17:34:17下载
- 积分:1