-
狼群算法
灰色狼犬算法适用于多维函数优化问题,注有中文注解(It is applicable to multidimensional function optimization problems, with Chinese annotations.)
- 2021-01-17 21:18:50下载
- 积分:1
-
数值分析迭代格式比较
数值分析迭代格式比较-iterative numerical analysis of comparative format
- 2022-03-18 03:36:28下载
- 积分:1
-
NLMS算法以及一篇文献
说明: APA自适应滤波代码,有学习曲线以及不同步长下,仿真的结果对比图(APA adaptive filter code, learning curve and comparison chart of simulation results under different steps)
- 2020-02-12 14:07:17下载
- 积分: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
-
hubulvbo
智能车 直立 互补滤波 卡尔曼滤波 源代码
(Complementary filter)
- 2013-05-04 23:29:49下载
- 积分:1
-
F-W算法讲解及matlab实现
F-w算法讲解及matlab代码,里面有课件以及代码(F-w algorithm explanation and matlab code)
- 2020-06-28 13:20:02下载
- 积分:1
-
VB 柱状图图表生成一例
在VB环境下生成柱状图的例子,VB6.0调用MSChart控件生成柱状图图表一例,程序要用到Access数据库,从中读取数据库后,对数据进行分组统计,然后使用MSChart所提供的方法,生成柱状图表,直观的表现出数据的差异性。
- 2023-09-01 02:30:03下载
- 积分:1
-
PSO_OPF
一种有效的用粒子群算法求解OPF的算法。可以直接拿来用。(An effective particle swarm optimization (PSO) algorithm for OPF. It can be used directly.)
- 2019-07-11 15:42:07下载
- 积分:1
-
享元模式-基本代码
说明: serial para activar el plants vs zombies
- 2020-06-24 20:00:02下载
- 积分:1
-
company1-2
公司有n个员工,编号1 ~ n。员工数量众多,需要你为他们编写一个管理系统。
员工上班时都要登录管理系统登记一个code,离开要从管理系统上注销,员工也可以随时更新自己的code。到了下班时间,所有员工都会自动注销。公司管理人员随时都可能想要知道有多少员工上班,以及任一员工登记的code。(The company has n employees, number 1 ~ n. There are so many employees that you need to write a management system for them.
When employees go to work, login to the management system to register a code, leave to log off from the management system, employees can also update their code at any time. By the end of the day, all employees will automatically log out. Company managers may at any time want to know how many employees go to work, and the number of code registered by any employee.)
- 2017-10-14 16:30:03下载
- 积分:1