-
chaotic
说明: 常用混沌系统的分叉图绘制,用matlab绘制,解压即可运行(Drawing bifurcation diagrams of common chaotic systems,draw with matlab, decompress and run)
- 2020-12-06 15:13:17下载
- 积分:1
-
tg
说明: 一个练习打字的游戏,字母下落,恩与字母相同的键就可以大落字母。(a practice typing games, in alphabetical whereabouts TU with the same letters on the keys can drop large letters.)
- 2005-07-23 11:17:47下载
- 积分:1
-
EN50128_中文版
EN50128中文版,翻译比较详细,编译对EN50128标准的理解(There is EN50128 which is transfered to Chinese)
- 2020-06-22 12:40:01下载
- 积分:1
-
ds.asm
ds.asm-- ----- --- -倒计时器源程序-ds.asm-------------- countdown device source
- 2023-05-08 15:25:03下载
- 积分:1
-
setcover
贪心算法实现集合覆盖问题,不带权的集合覆盖问题,c++源码(Greedy algorithm set cover problem)
- 2021-02-07 16:59:55下载
- 积分:1
-
RTC
making a clock by microcontroller atmega16 and show the time on lcd in c by codevision avr
- 2018-01-08 16:36:26下载
- 积分:1
-
FreeRTOS实时内核_实用指南
说明: FreeRTOS实时内核_实用指南 原版本英文的中文翻译版本(FreeRTOS translated to chinese)
- 2020-06-15 22:30:02下载
- 积分:1
-
harmonic_3phase
harmonic_3phase--3相谐波例子,自己编写!!初学者应该有一些参考价值(harmonic_3phase-- 3 phase Harmonic example, the preparation of their own! ! Beginners should be some reference value)
- 2006-06-30 17:17:26下载
- 积分:1
-
MATLAB神经网络43个案例分析-ri
本书论述在MATLAB环境下如何实现神经网络,包括了常用的神经网络及相关理论,如BP神经 网络、RBF神经网络、SVM、SOM神经网络、灰色神经网络、决策树、随机森林、小波神经网络、NARX神经网络等以及各种优化算法与神经网络的结合。(This book discusses how to realize neural network in MATLAB environment, including the commonly used neural network and related theory, combined with the BP neural network, RBF neural network, SVM, SOM neural network, grey neural network, decision tree, random forest, wavelet neural network and NARX neural network, optimization algorithm and neural network.)
- 2020-12-14 20:09:14下载
- 积分:1
-
C#启动Windows IIS服务的实例
C#启动指定的Windows信使服务,本例中是启动IIS服务,在Windows XP下可完美运行,在Windows7下不行好像,本程序演示如何在C#的程序中启动一个指定的Windows内置服务的方法。具体的实现代码:
ServiceController service = new ServiceController();//创建服务控制对象
service.ServiceName = "Messenger";//启动Windows信史服务
//判断当前服务状态
if (service.Status == ServiceControllerStatus.Stopped)
{
try
{
service.Start();// 启动服务
service.WaitForStatus(ServiceControllerStatus.Running);
}
catch (InvalidOperationException)
{
MessageBox.Show("不能启动该服务!");
}
}
- 2022-02-13 12:56:43下载
- 积分:1