-
综述
导航类综述性文章,包括MEMS微型惯导综述,单兵自主导航技术等,以及视觉导航综述(Navigation review articles, including MEMS micro-inertial review, individual autonomous navigation technology, and visual navigation overview)
- 2019-04-10 10:31:59下载
- 积分:1
-
ACregpower
说明: 斩控式AC-DC-AC变换在交流稳压电源中的应用(Application of Chopping Control AC-DC-AC Conversion in AC Power Supply)
- 2020-12-27 15:02:46下载
- 积分:1
-
matrix displacement method
使用矩阵位移法做平面杆件结构静力计算;
与龙驭球《结构力学》中介绍的方法一致,可帮助土木工程专业学习矩阵位移法时检验中间过程;(The matrix displacement method is used to calculate the static force of planar bar structure.
Consistent with the method introduced in the "structural mechanics" of long chien ball, it can help civil engineering majors to learn the matrix displacement method to test the intermediate process.)
- 2020-11-15 10:09:41下载
- 积分:1
-
matlab空间滤波
说明: 利用计算机处理(数字滤波)改善影像质量,包括去除高频噪声与干扰,及影像边缘增强、线性增强以及去模糊等。利用MATLAB实现算术均值滤波器、几何均值滤波器、中值滤波器、修正的阿尔法均值滤波器、自适应中值滤波器,并比较不同滤波器的降噪结果。(Using computer processing (digital filtering) to improve the image quality, including the removal of high-frequency noise and interference, as well as image edge enhancement, linear enhancement and de blurring. The arithmetic mean filter, geometric mean filter, median filter, modified alpha mean filter and adaptive median filter are realized by MATLAB, and the noise reduction results of different filters are compared.)
- 2020-05-24 22:24:29下载
- 积分:1
-
仿真设计作品--休想逃--麓 瑜 圆
说明: 仿真设计作品--中国闪烁式隐型坦克matlab语言仿真(simulation design works-- the Chinese-style covert scintillation tanks Matlab language simulation)
- 2006-01-09 19:17:20下载
- 积分:1
-
:好风格应该成为一种习惯。如果你在开始写代码时就关心风格问
题,如果你花时间去审视和改进它,你将会逐渐养成一种好的编程习惯。一旦这种习惯变成
自动的东西
:好风格应该成为一种习惯。如果你在开始写代码时就关心风格问
题,如果你花时间去审视和改进它,你将会逐渐养成一种好的编程习惯。一旦这种习惯变成
自动的东西,你的潜意识就会帮你照料许多细节问题,甚至你在工作压力下写出的代码也会
更好。-: Good style should become a habit. If you write code at the beginning when the issue of concern for style, if you take the time to examine and improve it, you will gradually develop a good programming practice. Once this habit becomes automatic things, your subconscious will help you take care of many details, and even under the pressure of your work will be better to write code.
- 2022-03-07 16:22:12下载
- 积分:1
-
BL35XX-SBC
RABBIT 3000处理器系列使用和开发手册(RABBIT 3000 CPU )
- 2015-01-25 14:12:44下载
- 积分:1
-
7bffe898
说明: 程序附了多项式的图,可以输入需要的项数,比如N=2,M=2,即可在单位圆(默认多项书系数是1)生成像散图像(The program is about the generation of Zernike polynomials)
- 2020-04-08 13:02:58下载
- 积分:1
-
my_testerBAT_v3
tester li ion battery
- 2017-06-19 09:27:18下载
- 积分:1
-
C# 创建泛型字典的例子
C# 创建泛型字典,为泛型字典添加3个元素,按键值对泛型字典进行排序操作。
Dictionary users = new Dictionary();//创建泛型字典
users.Add(3, new UserInfo(1, "滕*敏", "01"));//为泛型字典添加3个元素
users.Add(2, new UserInfo(2, "滕*娜", "02"));
users.Add(1, new UserInfo(3, "X家兴", "03"));
//按键值对泛型字典进行排序操作
var query = from item in users
where item.Value.UserName.CompareTo("滕*") > 0//用户名大于"滕立"
orderby item.Key
select item;
label1.Text = "显示查询结果:
";
foreach (var item in query)//显示查询结果
- 2022-08-02 11:59:24下载
- 积分:1