-
FtpSync
很棒的FTP客户端程序,支持自动下载同步软件功能。对站长用于同步远程服务器上的程序,挺有用(FTP client program, great support synchronization software automatically downloads. Synchronization program on a remote server, the webmaster is used quite useless)
- 2013-04-15 14:29:29下载
- 积分:1
-
m1_2010Mar13
MAME的游戏音乐播放DLL原代码,MAME的游戏音乐播放DLL原代码(MAME game DLL source code music playerMAME game DLL source code music player)
- 2010-07-10 23:21:18下载
- 积分:1
-
longgekuta
针对肖田元教授所著的《系统仿真导论》中龙格库塔法参考程序研究生很难看懂的现象,我加上了注释,使初学者能把学习算法和编写程序对应起来,从而可以有效地掌握算法的实现,对于用龙格库塔法进行在线实时仿真、建模、最优控制及自适应控制的教学有意义。(Professor Xiao Tianyuan for the book " Introduction to System Simulation," in reference to Runge-Kutta method is difficult to understand the phenomenon of post-graduate program, I have added comments to beginners can learn the corresponding algorithms and programming together, which could effectively implementation of control algorithms, using Runge-Kutta method for online real-time simulation, modeling, optimal control and adaptive control of a meaningful education.)
- 2010-02-07 17:09:08下载
- 积分:1
-
3
基于matlab简单图像处理系统中对图片的加噪功能(Based on a simple matlab image processing system for image plus noise functions)
- 2014-01-19 22:19:54下载
- 积分:1
-
21-RTC
STM32的实时时钟RTC很精确的,可以用来做电子钟电子万年历等(STM32 RTC)
- 2013-06-17 11:29:53下载
- 积分:1
-
合并多重表头
此文件详细的解释了,合并多重表头的实现方式及每局代码的功能是什么,在代码后边都有注释,这是我自己做的测试可以实现的,有需要的可以拿走。
- 2022-01-28 11:59:36下载
- 积分:1
-
SceneVisulization
说明: 类似office2007的界面风格,自定义设计炫丽的工具按钮(实现ArcSence中常用按钮功能),利用ArcEngine提供的SceneControl和相应的接口实现三维数据加载、显示、浏览、分析等功能,如坡度分析、通视分析剖面图绘制、自动生成等高线等。 (Office2007 interface similar style, custom-designed fancy tool button (the button functions commonly used to achieve ArcSence), use provided SceneControl ArcEngine interface and the corresponding three-dimensional data load, display, browsing, analysis and other functions, such as slope analysis, visibility analysis section drawing, automatic generation of contour lines.)
- 2011-03-06 15:00:17下载
- 积分:1
-
Boosting
Boosting原理及在分类上的应用PPT,学习boosting原理流程,该算法的一般情况。(Boosting principle and the application of the classification PPT, learning processes boosting principle)
- 2013-08-03 16:52:07下载
- 积分:1
-
MPU6050
g90驱动 有兴趣的朋友可以关注,和我一起讨论学习,一起享受技术,一起成长(G90 Drives Interested Friends to Pay Attention, Discuss Learning with me, Enjoy Technology and Grow up Together)
- 2020-06-20 13:40:01下载
- 积分:1
-
C# 确定字符串末尾是否匹配指定子串
C# 确定字符串末尾是否匹配指定子串,本字符串查询实例具体到只匹配字符串开头和结尾是否有指定的字符串,下面是具体的查询代码编写方法:
private void button1_Click(object sender, EventArgs e)
{//确定字符串开头是否匹配指定子串
string MyFullInfo = "中华人民共和国";
string MyPartInfo="中华";
if(MyFullInfo.StartsWith(MyPartInfo))
MessageBox.Show(MyFullInfo + " 的开头是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);
else
MessageBox.Show(MyFullInfo + " 的开头不是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);
}
private void button2_Click(object sender, EventArgs e)
{//确定字符串末尾是否匹配指定子串
string MyFullInfo = "中华人民共和国";
string MyPartInfo = "共和国";
if (MyFullInfo.EndsWith(MyPartInfo))
MessageBox.Show(MyFullInfo + " 的末尾是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);
else
MessageBox.Show(MyFullInfo + " 的末尾不是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);
}
- 2022-02-09 23:32:04下载
- 积分:1