-
FSMC—扩展外部SRAM
说明: STM32库开发实战 FSMC扩展外部SRAM历程(FSMC extends external SRAM history)
- 2019-11-05 20:18:48下载
- 积分:1
-
Snake-game-C-program
贪吃蛇游戏C语言程序,简单易懂,适合初学者参考(Snake game C Programming Language, easy-to-understand reference for beginners)
- 2012-04-22 12:12:07下载
- 积分:1
-
y14_5
汽车四自由度系统模型仿真。包括车身垂直振动,俯仰振动,前轴振动,后轴振动对前后车轮的影响。(Simulation of Four - Degree - of - Freedom System Model. Including the vertical vibration of the vehicle body, pitch vibration, front axle vibration, rear axle vibration on the front and rear wheels.)
- 2020-07-03 05:20:01下载
- 积分:1
-
mnist
用深度学习的方法识别数字,神经网络使用CNN,数据集mnist(Identification number)
- 2019-05-09 10:41:15下载
- 积分:1
-
策略模式-商场管理软件04策略模式
说明: A greedy algorithm is a simple, intuitive algorithm that is used in optimization problems.
- 2020-06-24 06:40:02下载
- 积分:1
-
二层地质模型波场模拟
二阶地质模型波场模拟 新手使用 有限差分边界 条件(Two order geological model wave field simulation novice)
- 2018-06-02 21:48: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
-
my_clustering
我自己编写的分层聚类算法,类内采用最大距离,类间采用最小距离实现(myself prepared by the Hierarchical clustering algorithm, the largest category within distance between categories of use to achieve minimum distance)
- 2005-05-12 15:01:12下载
- 积分:1
-
walkingpete小程序!
一个walkingpete的小程序-walkingpete a small procedure!
- 2022-07-06 12:11:14下载
- 积分:1
-
二维射线追踪程序包,主要用于石油行业基于射线追踪的正演模拟计算...
二维射线追踪程序包,主要用于石油行业基于射线追踪的正演模拟计算-2D Raytracing source packet, main use for oil exploration 2d raytracing modeling
- 2022-04-25 08:10:58下载
- 积分:1