-
CC2541 ANCS协议
可以获取苹果通知栏信息,已验证通过
- 2022-05-25 18:50:20下载
- 积分:1
-
C#源码,DNS集成服务系统,是学习c#系统编程的一个好例子
C#源码,DNS集成服务系统,是学习c#系统编程的一个好例子-C# source code, the DNS system integration services, is learning c# programming system is a good example
- 2022-06-17 12:10:23下载
- 积分:1
-
MST C#代码
一个有 n 个结点的连通图的生成树是原图的极小连通子图,且包含原图中的所有 n 个结点,并且有保持图连通的最少的边。 最小生成树可以用kruskal(克鲁斯卡尔)算法或prim(普里姆)算法求出。
- 2023-05-31 11:30:04下载
- 积分:1
-
lesson1
C#+AE编程,主要是实现几何对象和空间坐标系的基本操作,适合初学者!(C#+ AE programming, mainly to achieve geometric objects and spatial coordinates of the basic operation, suitable for beginners!)
- 2013-08-12 20:12:11下载
- 积分:1
-
(SP)Subspace-Pursuit
一个关于压缩感知的论文,是用子空间迭代法求出最后的稀疏解(a method for compressed sensing)
- 2013-12-17 22:23:24下载
- 积分:1
-
RN8209G新版用户手册_v2_0
RN8029原理图,可以好利用一下,挺完整的,值得一用(RN8029 schematic diagram, you can make good use of it, quite complete, it is worth using.)
- 2020-06-22 15:20:02下载
- 积分:1
-
ofdm-qpsk-mycreatechannel
我们将通过MATLAB仿真在发送平均功率和传输速率相同的情况下,在传输特性为理想的平的和非平(即存在码间干扰)的信道上,对多载波OFDM和单载波QPSK的误码率进行比较。(We will send the average power by MATLAB simulation and the transmission rate in the same circumstances, in the transmission characteristics of the ideal of peace and non-flat (as is the inter-symbol interference) of the channel, multi-carrier OFDM and single carrier QPSK BER rates were compared.)
- 2010-06-15 10:56:27下载
- 积分:1
-
dbscanPointcloud
用DBSCAN聚类算法实现的三维点云的聚类(using DBSCAN to realise 3d pointcloud clustering)
- 2020-10-12 14:37:33下载
- 积分:1
-
C# 实现 MD5加密解密算法
using System.Security.Cryptography;using System.IO; using System.Text; ///MD5加密 public string MD5Encrypt(string pToEncrypt, string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray = Encoding.Default.GetBytes(pToEncrypt); des.Key = ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = ASCIIEncoding.ASCII.GetBytes(sKey); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(),CryptoStreamMode.Write); cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); StringBuilder ret = new StringBuilder(); foreach(byte b in ms.ToArray()) { ret.AppendFormat("{0:X2}", b); } ret.ToString(); return ret.ToString(); } ///MD5解密 public string MD5Decrypt(string pToDecrypt, string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray = new byte[pToDecrypt.Length / 2]; for(int x = 0; x < pToDecrypt.Length / 2; x ) { int i = (Convert.ToInt32(pToDecrypt.Substring(x * 2, 2), 16)); inputByteArray[x] = (byte)i; } des.Key = ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = ASCIIEncoding.ASCII.GetBytes(sKey); MemoryStream ms = new MemoryStream(); CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(),CryptoStreamMode.Write); cs.Write(inputByteArray, 0, inputByteArray.Length); cs.FlushFinalBlock(); StringBuilder ret = new StringBuilder(); return System.Text.Encoding.Default.GetString(ms.ToArray()); }
- 2013-11-13下载
- 积分:1
-
vista_controls
模拟vista效果的一些控件,包括文件对话框·按钮等(Analog vista effect some control, including the file dialog buttons, etc.)
- 2008-02-25 15:03:35下载
- 积分:1