-
Bolito-FJT
TEMPLATES FOR JOOMLA
- 2015-09-07 22:28:25下载
- 积分:1
-
UKF
一种很好的非线性目标跟踪算法,克服了扩展卡尔曼滤波的缺点(A good nonlinear target tracking algorithms, to overcome the shortcomings of the extended Kalman filter)
- 2009-11-27 10:22:27下载
- 积分:1
-
WindSpeed_Shorttime
说明: 湍流风模型,用MATLAB 仿真了渐变风的运行状态(Turbulent wind model, the running state of gradient wind is simulated with MATLAB.)
- 2019-04-01 16:52:34下载
- 积分:1
-
B-wavelet
基于B样条小波边缘检测算子的应用研究,摘自图形图像学报(Based on B-spline wavelet edge detection operator of applied research, graphic images taken from the Journal)
- 2007-03-13 15:57:12下载
- 积分:1
-
C# 泛型列表List用法示例
C# 泛型列表List用法示例,从给出的人员名单中,过滤人员名称中以"科"结束的序列,遍历查询结果。
private void Frm_Main_Load(object sender, EventArgs e)
{
List People = new List{//创建人员列表
new Person(1,"王*科"),
new Person(2,"王*科"),
new Person(3,"赵*东")};
var query = from p in People//过滤人员名称中以"科"结束的序列
where p.Name.EndsWith("科")
select new
{
人员ID = p.ID,
人员姓名 = p.Name
};
foreach (var item in query)//遍历查询结果
{
label1.Text += item + "
";
}
}
}
public class Person
{
public Person(int id, string name)
{
this.ID = id;
this.Name = name;
}
public int ID { get; set; }//人员ID
public string Name { get; set; }//人员姓名
}
- 2023-01-08 20:45:03下载
- 积分:1
-
ILP
病态线性方程组的一些求解算法,包括传统的CG,CGLS,CGNR,LSQR和较新的OVM算法,它们都是一些迭代算法。(Some solving algorithms for ill conditioned linear equations include conventional CG, CGLS, CGNR, LSQR, and newer OVM algorithms, all of which are iterative algorithms.)
- 2017-08-06 08:50:42下载
- 积分:1
-
data_loan
入链贷款信息索引表,用于区块链查询贷款信息。(Linked Loan Information Index Table)
- 2020-06-20 13:40:01下载
- 积分:1
-
wkb
说明: 等离子技术WKB方法的文章。等离子体隐身技术的WKB方法(Plasma technology WKB method article. Plasma stealth technology WKB method)
- 2008-09-05 15:20:37下载
- 积分:1
-
j2melianliankan
跟小时候用麻将玩的连连看很像,就是简单的数字组成,是款很益智的小游戏(lianliankan is like a game that played with majiang in our childhood)
- 2011-12-22 11:17:56下载
- 积分:1
-
模糊聚类信号分选
通过算法实现模糊聚类分选,测试能够正常运行(Fuzzy Clustering Classification by Algorithms)
- 2019-05-09 20:07:01下载
- 积分:1