-
DErand1either-or
DE的一种改进算法,程序通过改变变异规则来大概改进算法的目的,同JDE一样是改进DE的一种(DE, an improved algorithm of application about the purpose of the improved algorithm by changing the variation rules, as well as JDE is a kind of improved DE)
- 2014-09-26 15:48:11下载
- 积分:1
-
Project_1
智能车激光头的检测程序,可用于激光头的很多调试(Laser head of intelligent vehicle testing procedures
)
- 2012-01-04 15:44:37下载
- 积分:1
-
m16l
说明: the very good man is you for anyone who descriminate this
- 2019-05-31 11:50:17下载
- 积分: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
-
一个完整的EA基础构架【源码】
学习编写EA的基本内容,了解编写EA的基础方法。(Learn to write the basic content of EA and understand the basic method of compiling EA.)
- 2020-06-30 13:00:02下载
- 积分:1
-
DS18B20
avr单片机c语言实现DS18B20温度实验(avr microcontroller c language DS18B20 temperature experiment)
- 2011-07-21 21:00:10下载
- 积分:1
-
Excersize1
读取图片实现比例缩放,基于vs2010和opencv(Reading the image scaling based vs2010 and opencv)
- 2012-12-02 10:30:48下载
- 积分:1
-
CodeMatch
视觉测量中编码点与非编码点的匹配的方法实现(Vision measuring, coding point and the coding point matching
)
- 2020-12-18 21:19:10下载
- 积分:1
-
915M-uhf
这是通过hfss软件设计915m超高频偶极子天线工程 此设计只通过仿真验证 没有制作实物验证(It is designed to 915m UHF dipole antenna hfss software engineering through the design just does not make physical verification by simulation)
- 2013-12-29 10:53:39下载
- 积分:1
-
3
说明: 为了采集准确的心电信号,设计了一套基于瞬时心率信号抗干扰测量的方法,针对微弱并易受干扰的心电采样信号,进行有效地硬件以及软件滤波,通过软件数字滤波算法,得到真实的心率信号(Set based on the instantaneous heart rate signal immunity measuring method to collect accurate ECG, ECG sampling signal for the weak and vulnerable to interference, hardware and software filtering, digital filtering algorithm through software, get real The heart rate signal)
- 2013-04-01 16:39:47下载
- 积分:1