-
gaobject
基于Visual C++ 语言的遗传算法求函数最小值的程序代码。(Based on Visual C++ language of the genetic algorithm for the minimum function of the program code.)
- 2009-05-24 10:27:24下载
- 积分:1
-
aumerical-integ-ration
: 针对实际振动位移难以获取的问题, 利用振动位移与加速度信号之间的关系, 先对采样后的加速度信
号采用时域数值积分,得到含有趋势项的速度信号及位移信号,再采用拟合多项式极值的方法, 消除积分过程
中产生的趋势项,从而得到更为精确的速度和位移信号. 算例表明, 利用拟合多项式极值消除趋势项的方法,
得到的位移时程曲线拟合精度高(: In pract ical engineering , the collection of displacement data is mo re dif ficult than that of the
acceleratio n data in the time-domain .Displacement sig nals w as g ot f rom acceleration s ignals using
aumerical integrat ion , wi th the t rend o f erro r. Poly nomial fit ting method o f ex t reme value to eliminate
the trend of erro r w as proposed . More precise di splacement data can be acquired f rom thi s algo rithm.
The example show s that thi s alg orithm can get hig h accuracy displacement data f rom the acceleration
data mo re easi ly .)
- 2014-12-14 18:11:57下载
- 积分:1
-
FATFS文件系统的移植
本文以第一视角讲述了移植FATFS文件系统的过程。其中遇到的困难,解决方案的寻找,原理的讲解,都能带给人许多启发(This paper describes the process of transplanting FATFS file system from the first perspective. The difficulties encountered, the search for solutions, and the explanation of the principles can give people a lot of inspiration.)
- 2020-06-20 15:20:02下载
- 积分:1
-
ApmSonar
超声波的壁障方案,该方案可以确保APM能正常的使用和加载超声波模块,可以进行自动话壁障和自动导航!(ultrasonic barrier scheme)
- 2017-05-10 18:01:32下载
- 积分:1
-
usb枚举-游戏控制器 + USB枚举-键盘 : usb复合设备 (SOURCE CODE)
usb枚举-游戏控制器 USB枚举成功-键盘 usb复合设备
- 2023-02-25 01:35:20下载
- 积分:1
-
实验10 按键控制跑马灯
说明: 使用单片机对灯泡进行控制,制做做出跑马灯的效果,简单加深对定时器的理解和蜂鸣器的应用,更深入的理解51的内部结构和使用方式。学会用单片机控制灯。(The use of single-chip microcontroller to control the light bulb, make a running horse lamp effect, simple deepen the understanding of timer and buzzer application, more in-depth understanding of the internal structure and use of 51. Learn to control the lamp with single chip computer.)
- 2020-06-16 23:20:01下载
- 积分:1
-
SQL_SERVER2008_EXPRESS
MFC对话框ADO连接SQL_SERVER2008(MFC dialog ADO connection SQL_SERVER2008)
- 2014-01-01 21:13:34下载
- 积分:1
-
cs
说明: MFC界面,服务器端可通过TCP socket的链接使client和sever端建立链接,然后可以对客户端的相关文件实现监听功能。并显示在服务器相应位置。(client sever )
- 2014-05-01 23:03:40下载
- 积分:1
-
未命名文件夹
说明: 这个代码实现了ZYNQ的PL端的扩展串口功能,且可用于LINUX系统中,485/232都可使用,后续会继续更新(This code implements the extended serial port function of the PL end of ZYNQ, and can be used in LINUX system, 485/232 can be used, and will continue to be updated later.)
- 2020-06-24 02:00:02下载
- 积分:1
-
C# 模糊文字 点击按钮文字模糊
C# 制作的模糊文字 点击按钮文字模糊效果,这是基于WPF的一个图像特效,将文字模糊显示,如图所示,运行本程序后,点击窗口中的按钮,即可将按钮中的文字模糊处理。下面来看具体的模糊按钮文字的实现代码:
if (((Button)sender).BitmapEffect != null)
{
((Button)sender).BitmapEffect = null;
}
else
{
Button MyButton = (Button)sender;
var MyBlurEffect = new System.Windows.Media.Effects.BlurBitmapEffect();
MyBlurEffect.Radius = 4;
MyBlurEffect.KernelType = System.Windows.Media.Effects.KernelType.Box;
MyButton.BitmapEffect = MyBlurEffect;
}
- 2022-01-21 04:39:19下载
- 积分:1