-
一个模拟程序,起飞和降落的机场,飞机运动的作用。
一个模拟飞机场升降的程序,飞机的升降数目符合泊松分布-A simulation program taking off and landing airport, aircraft movements is in accordance with Poisson distribution
- 2022-03-01 13:29:53下载
- 积分:1
-
通过欧几里德距离对三维空间内的数据点进行聚类:
从文件读入三列表示坐标的数据进行聚类。按项目总数和组数平均划分。首先计算两两之间的距离,选出最近的两个点,再...
通过欧几里德距离对三维空间内的数据点进行聚类:
从文件读入三列表示坐标的数据进行聚类。按项目总数和组数平均划分。首先计算两两之间的距离,选出最近的两个点,再按距离由小到大排序,找出距这两个点最近的若干个点。
除去这些点后对其余的点重复进行上述操作。-By Euclidean distance on three-dimensional space, clustering of data points: from the file read into the three coordinates of the data indicated that cluster. According to the average number of total number of projects and group division. First, calculate the distance between 22 to elect the nearest two points, and then from small to large order to identify these two points away from a number of recent points. After removing these points the rest of the point of repeating to carry out such operations.
- 2023-01-05 15:35:03下载
- 积分:1
-
定期提醒(可安装:警告;建议和关机;直接等。
定时提醒(可设:提醒;提醒并关机;直接关机;定时执行一程序等。是家长们控制孩子玩电脑的好帮手。-regularly reminded (can be installed : Warning; Advised and shutdown; Directly elected; Timing implementation of a procedure. parents controlled their children playing with the computer"s helping hands.
- 2022-02-01 00:23:38下载
- 积分:1
-
delphi使用dll的方法详解
delphi使用dll的方法详解-delphi use of the method for Hi dll
- 2022-02-21 06:39:57下载
- 积分:1
-
二
根据二维空间内目标作匀速直线运动和匀速圆周运动的特点,在建立目标运动模型和观测模型的基础上采用基于交互多模算法(IMM)的卡尔曼滤波器对机动目标进行跟踪。仿真结果表明,该算法不仅能够对匀速直线运动和匀速圆周运动的目标进行跟踪,而且在运动模型发生变化时,滤波误差也比较小。
关键词:卡尔曼滤波器;目标跟踪;机动;交互多模(IMM)
-two-dimensional space under target for uniform linear motion and uniform circular motion characteristics, the establishment of the target model and observations on the basis of the model based on interactive multi-algorithm (IMM) Kalman Filter right track moving targets. Simulation results show that the method can not only on uniform linear movement and the uniform circular motion of the target tracking, and the campaign model change, the filter error is relatively small. Keywords : Kalman filter; Target tracking; Mobility; Interactive multi-mode (IMM)
- 2022-02-11 17:57:23下载
- 积分:1
-
可以查看到自己的空间使用量
1,可自定义检测目录
2,程序采用模板技术,代码与界面100%分离
3,可自定义设计用户层界面层
4,可自定义图形显...
可以查看到自己的空间使用量
1,可自定义检测目录
2,程序采用模板技术,代码与界面100%分离
3,可自定义设计用户层界面层
4,可自定义图形显示百分比
5,目录使用量单位自动转换
6,除了主目录的统计,还可统计当前目录下的二级目录容量
7,在VS开发工具中,可预览模板界面
8,控件调用方式,无须任何后台代码编辑
-can check their own use of a space can be detected from the definition of Contents 2, procedures using the template technology, interface code and three 100% separation can be custom-designed user interface layer 4, custom graphics percentage 5, Contents use automatically converted six units, in addition to the main catalog statistics, but also statistics directories under the current capacity of 2 Contents 7, the VS development tools, preview 8 template interface, call control, without any background code editor
- 2022-03-06 22:29:02下载
- 积分:1
-
I2C规范说明,I2C 是板上常用的芯片间控制传输协议
I2C规范说明,I2C 是板上常用的芯片间控制传输协议
-I2C specification, I2C board is commonly used between chips Control Transmission Protocol
- 2022-03-21 18:22:41下载
- 积分:1
-
一个用C 语言编写计算器程序,绝对的正确,我自己调试过的,能成功...
一个用C 语言编写计算器程序,绝对的正确,我自己调试过的,能成功-a C language calculator program that is absolutely right, I own debugging off and success
- 2022-05-08 08:45:47下载
- 积分:1
-
uva10324解法(提共題目和解法程式)
題目說明:給你一連串僅包含0和1的字串 (字串長度最大到1000000,字串從第0個字元開始),要請你回答我們在第i個和第j個字元之間(包含第i個和第j個)、 是否所有的字元均相同 (均為1或均為0)。如果均相同請回答Yes、 否則請回答No。输入每筆測試資料的第一列為一個僅包含0和1的字串,下一列有1個整數n 代表對於上一列字串以下有n個問題。皆下來的 n 列每列有2個非負的整數分別代表 i和 j。输出對每一列測試字串,請先輸出第幾個的案例。然後根據 n 個問題回答肯定或否定的。解法:1.用获取讀入整行字串輸入、 並計算長度2.先判斷第 0 個位置,为 0 則把 0 存入另一個整數陣列,为 1 則存 13.用迴圈把字串陣列轉換存到整數陣列、 遇到字元 0 則值不變、 遇到字元 1 則加 14.欲判斷的i、 j位置都為字元 0、 且整數陣列i、 j位置的值相同、 代表有一連串 0、 輸出是5.欲判斷的i j位置都為字元 1,且整數陣列i、 j位置的值相減為i、 j的差、 代表有一連串 1,輸出是6.其他情況輸出号
- 2022-05-06 12:04:30下载
- 积分:1
-
sourse code of kmp algorithm
poj 上的几道kmp 题的解题报告 sourse code of kmp algorithm -sourse code of kmp algorithm
- 2022-05-17 02:18:57下载
- 积分:1