搜索资源列表
bishe2
- 用遗传算法实现基于门限值控制的ABS系统参数进行优化-genetic algorithm based on the threshold of ABS control system parameters to optimize
rangedataread
- 点云预处理时,需要将.abs压缩格式转化为.asc格式,同时需要得到深度图像。本程序完成这一功能。这可是一般都不会拿出来的。-point cloud, it needs to be. Abs into compressed format. Asc format, also need to be depth images. The procedures are completed this function. But it will not usually take to work.
gaitaibiao
- 高斯贝尔abs直播卫星 系统源码,将源码写入可突破中星9号12台限制。-High-GOSPELL abs broadcast satellite system source code, source code is written will be a breakthrough in the star 12 sets limits on the 9th.
c1
- 计算柱状体对垂直入射的平面波的散射C1.for (a) efficiencies (ext.,sca.,abs.) vs size parameter (b) intensity at a scattering angle vs size parameter (c) angular scattering over a plane -C1.for (a) efficiencies (ext.,sca.,abs.) vs size parameter
matlab
- 汽车ABS防抱死系统 程序开发汽车 ABS防抱死系统 程序开发-ABS anti-lock braking system Automotive automotive ABS anti-lock braking system program development Program Development
cc
- 汽车ABS模糊PID控制方法的仿真研究,SIMULINK仿真用-Automobile ABS fuzzy PID control simulation
3-17
- 字符串比较问题 问题分析:解答此题需要一个较为巧妙的解题思路。解决此题可以借用“最长公共子串”问题的解题思路。采用自底向上的动态规划思想。假设对于给定的字符串A,B长度分别为m,n,A[1..m],B[1..n],这里可以使用变量val[m][n]表示A,B的扩展距离。 对于字符串A[1..m],B[1..n],有以下两种情况: 1.A[m]和B[n]处在扩展字符串的同一个位置,那么val[m][n]=val[m-1][n-1]+abs(A[m]-B[n])。 2.A[m]和B[n]不在