-
lms source code for adaptive filtering the acoustic noise.
lms source code for adaptive filtering the acoustic noise.
- 2022-05-28 15:10:36下载
- 积分:1
-
徐世良-C常用算法集的源代码
徐世良-C常用算法集的源代码- Xu Shiliang- C commonly used algorithm collection source code
- 2022-04-28 04:11:27下载
- 积分:1
-
隐马尔可夫模型,训练阶段数据必须给予模型。
hmm model, training phase data has to be given to the model .-hmm model, training phase data has to be given to the model .
- 2022-02-06 05:00:23下载
- 积分:1
-
2维数组 截断 追加 测试
应用背景
二维数组的截断和追加并不像TStringList那么简单。在研究二维数组的截断和追加时,写了本例子来研究。提供给有相同问题的后来人参考,代码有点青涩,毕竟是研究算法的的demo,不喜勿喷!
关键技术
二维数组的截断和追加是一个抽象的概念,本demo把它实例化,可以给爱偷懒的程序学习者参考,不足之处欢迎拍砖。{删除动态数组指定元素的过程: 参数 arr 是数组名, 参数 Index 是要删除的索引}
procedure TForm1.DeleteArrItem(Index:Integer);
var
j:integer;
begin
if Length(MyProArr)>1 then
begin
for j := Index to Length(MyProArr)-2 do begin
MyProArr[j,0]:=MyProArr[j+1,0];
MyProArr[j,1]:=MyProArr[j+1,1];
end;
setlength(MyProArr,Length(MyProArr)-1,2);
end else
begin
setlength(MyProArr,0,2);
end;
- 2022-11-15 14:10:02下载
- 积分:1
-
随机有限元理论教材,是学习随机有限元及可靠度理论的不错东东...
随机有限元理论教材,是学习随机有限元及可靠度理论的不错东东
-Stochastic finite element theory of teaching materials, are studying stochastic finite element and reliability theory is true Dongdong
- 2023-06-23 14:15:03下载
- 积分:1
-
对于给定的自然数n,编程计算半数集set(n)中的元素个数
对于给定的自然数n,编程计算半数集set(n)中的元素个数-regard to the natural number n, calculate half Sets set (n) of the number of elements
- 2023-06-19 16:35:03下载
- 积分:1
-
多目标优化
完善的多目标算法,可以用来进行智能的多目标优化,方便实用,是不可多得的优质代码,分享出来供大家参考借鉴,使用时注明出处
- 2022-02-09 14:09:41下载
- 积分:1
-
A*寻路算法, 源代码中使用的SDL库,可以到http://www.libsdl.org/或者VC知识库网站工具栏目www.vckbase.com/tools下...
A*寻路算法, 源代码中使用的SDL库,可以到http://www.libsdl.org/或者VC知识库网站工具栏目www.vckbase.com/tools下载。-A* Routing algorithms, source code used in the SDL libraries, or can http://www.libsdl.org/ VC Knowledge Base site columns www.vckbase.com tools/tools download.
- 2022-03-25 14:40:09下载
- 积分:1
-
ssd5 机试二
数据结构第二次实验课考试,停车场那个。只有main.cpp。
- 2022-01-23 10:11:12下载
- 积分:1
-
DFT离散傅里叶变换的数字采样数据
DFT的数字采样数据可以用在任何时间序列数据(声波/振动/地震等)平面文本输入(没有声卡)
- 2023-07-19 00:40:02下载
- 积分:1