-
fanyanprogram
基于matlab的反演程序,用于地球物理勘探中射线追踪及偏移成像程序.(the inversion procedure for geophysical exploration ray tracing and migration procedures.)
- 2021-03-25 01:09:14下载
- 积分:1
-
Snake-source-code
本程序是一个贪吃蛇的程序,可以实现贪吃蛇游戏的基本功能(This program is a Snake' s program, you can achieve the basic functions of the Snake game)
- 2013-03-04 16:31:24下载
- 积分:1
-
利用matlab实现H-infinity鲁棒控制
利用Matlab实现H∞控制,有代码,对初学者有帮助(H infinity control in Matlab)
- 2020-12-15 09:09:13下载
- 积分:1
-
shouji
asp 手机网站 全代码 完全开放 配置iis即可浏览(asp mobile website)
- 2020-06-30 12:40:01下载
- 积分:1
-
dc_kalman
卡尔曼算法实现及MATLAB仿真,以及simulink仿真模块(Realization of Kalman algorithm and Simulation of MATLAB, and Simulink simulation module)
- 2019-03-04 09:25:04下载
- 积分:1
-
essentialskillsforagiledevelopment
Essential Skills for Agile Development - Agile Development, in particular, eXtreme Programming (XP), has been gaining a lot of momentum because it can effectively address the problems plaguing software development such as mis-understanding customers requirements, missing deadlines, over-budget, conflicts between customers and developers and poor maintainability of legacy systems.
- 2010-12-20 00:26:38下载
- 积分:1
-
SMbus
sstm32f103 双路SMbus协议,外带定时器,五路ADC采样设计(stm32f103 SMBUS ADC,stm32f103 SMBUS ADCstm32f103 SMBUS ADCstm32f103 SMBUS ADCstm32f103 SMBUS ADC)
- 2021-04-21 16:48:50下载
- 积分:1
-
VB6.0图片裁切的实现+代码实例
VB6.0图片裁切的实现+代码实例,支持纵向和横向单图裁剪、纵向、横向批量裁剪,用起来十分方便,选择一个包括有图片的文件夹,程序自动加载这些图片,可选择上述的操作选项,进行批量图片裁剪处理。
- 2022-03-02 09:27:02下载
- 积分:1
-
code:人工势场法(3维)
说明: 机器人在线规划,主要采用人工势场法,移动机器人(on-line path planning of mobile robot)
- 2021-02-21 23:09:41下载
- 积分: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