-
BHJA
说明: 可用于计算磁滞回线Jiles-Atherton模型程序;可用于各向异性磁性材料的磁滞回线计算(It can be used to calculate the hysteresis loops of jiles Atherton model program and anisotropic magnetic materials)
- 2021-02-07 22:30:44下载
- 积分:1
-
非常有用的资料,做硬件设计的工程师必须会的基础内容
非常有用的资料,做硬件设计的工程师必须会的基础内容-Very useful information to do hardware design engineers must be the basis of content
- 2023-08-26 23:55:03下载
- 积分: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
-
WSN网络的CMIMO算法 CMIMO WSN
WSN网络的CMIMO算法,梯形结构的路由和中继算法,(CMIMO method for WSN)
- 2017-05-22 17:52:32下载
- 积分:1
-
doc
芯片sha204a的说明,看完之后能够更好的进行加密(The chip sha204a shows that it can be better encrypted after reading)
- 2017-08-02 15:36:24下载
- 积分:1
-
Python基础教程(第3版)(#)
说明: python入门,python初学者教程,菜鸟教程(Getting started with Python, beginner course of python, rookie course)
- 2020-10-19 20:47:26下载
- 积分:1
-
duoj
STC52单片机控制舵机,可设置转舵限制度数(STC52 microcontroller to control the steering, steering limit can be set.)
- 2018-01-03 21:04:28下载
- 积分:1
-
案例1非线性
说明: 非线性问题求解案例及其相应代码,代码很详细。(Nonlinear problem solving case and its corresponding code)
- 2019-10-23 16:21:16下载
- 积分:1
-
In this talk we will consider two approaches in dealing with the risk of supplie...
In this talk we will consider two approaches in dealing with the risk of supplier bankruptcy. In the first model, we study the effects of supply disruption risk in a supply chain where one buyer deals with competing risky suppliers who may default during their production lead-times.
- 2022-05-21 09:07:11下载
- 积分:1
-
这个是老师要叫的作业,会很有用哦,输入一段程序,就会判断词法类型...
这个是老师要叫的作业,会很有用哦,输入一段程序,就会判断词法类型-this is the teacher called to the operation, it will be very useful, oh, the importation of some procedures, it will judge the type morphology
- 2023-02-10 09:25:04下载
- 积分:1