-
ANN_matlab_916006583
一个介绍如何用matlab模拟实现ANN的文章,对于学习ANN的人来说非常值得一读(1 describes how to use matlab simulation to achieve ANN article, for those who study ANN is very well worth reading)
- 2009-12-30 09:39:03下载
- 积分:1
-
DOG
说明: 高斯尺度差角点检测算法
将轮廓曲线在不同尺度下的演化差异的变化量作为角点响应函数并提出相应的
DoG 检测算子(Gauss scale difference corner detection algorithm)
- 2020-04-02 20:48:59下载
- 积分:1
-
Petri网可达分析算法
Petri网可达分析算法,
吴哲辉教授编写的Petri网导论的第三章算法3.1的实现
使用C++编写
- 2022-01-31 12:39:21下载
- 积分:1
-
TempHumSystem
这是一个用于工控的上位机系统,可以实时监测温度,露点,湿度。用户可以根据具体情况设定报警点,当达到报警点,系统通过邮件发送报警信息给用户。(This is a PC for industrial control of the system, can be real-time monitoring of temperature, dew point and humidity. Users can set alarms based on specific circumstances, when the police reached, the system, through e-mail warning messages to users.)
- 2009-05-16 10:46:36下载
- 积分:1
-
C# 在密钥容器中创建非对称密钥
在密钥容器中创建非对称密钥、在密钥容器中删除非对称密钥、在密钥容器中获取非对称密钥,具体的实现代码,请参考如下代码:
private void button1_Click(object sender, EventArgs e)
{//在密钥容器中创建非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textBox2.Text;
RSACryptoServiceProvider MyRSA = new RSACryptoServiceProvider(MyCSP);
this.textBox1.Text=MyRSA.ToXmlString(true);
}
private void button2_Click(object sender, EventArgs e)
{//在密钥容器中删除非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textBox2.Text;
RSACryptoServiceProvider MyRSA = new RSACryptoServiceProvider(MyCSP);
MyRSA.PersistKeyInCsp = false;
MyRSA.Clear();
try
{
this.textBox1.Text = MyRSA.ToXmlString(true);
}
catch
{
this.textBox1.Text = "已经删除非对称密钥!";
}
}
private void button3_Click(object sender, EventArgs e)
{//在密钥容器中获取非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textB
- 2022-02-06 13:18:17下载
- 积分:1
-
blokkodlama_birbit
Block Coding channel rayleigh
- 2011-09-10 15:48:33下载
- 积分:1
-
PersProjDemo
Teach you the pipeline of 3D object, especially the perpective project
- 2013-09-01 12:46:11下载
- 积分:1
-
ftp文件上传
本程式实现扫入序列号,将RESULT.txt重命名为以序列号为文件名的TXT文档,然后上传至FTP的地址中,配置文件ftpip.txt中存放FTP IP地址,程式中可以设定FTP用户名和密码,上传成功或FAIL后会在UI上显示。
- 2022-01-28 05:17:41下载
- 积分:1
-
51单片机程序,由按键控制led灯亮度
说明: 此程序为51单片机程序,由按键控制led灯亮度。(This program is 51 single-chip computer program. The brightness of LED lamp is controlled by keys.)
- 2020-06-23 07:40:01下载
- 积分:1
-
source-code
Opencv教程的实例源代码
书中的C/C++语言实例。各实例子目录中的*.dsw和*.dsp文件分别为Windows下Visual C++ 6.0的Workspace文件和Project文件;Makefile是Linux下GNU Make的输入文件。在Windows环境下,双击*.dsw文件将会启动Visual C++ 6.0并装载该实例;在Linux环境下,输入make命令就可以编译该实例。(Opencv tutorial source code examples in the book of C/C++ language examples. .. Each instance subdirectory* dsw and* dsp files are under Visual C++ 6.0 for Windows File and Project Workspace file Makefile Linux is GNU Make the input file. In the Windows environment, double* dsw file will start the Visual C++ 6.0 and load the instance in the Linux environment, enter the make command to compile the examples.)
- 2013-12-05 22:28:11下载
- 积分:1