-
S29GL-P-cn
说明: S29GL系列NorFlash中文手册,含关键读写代码(S29GL Series NorFlash Chinese Manual with Key Read-Write Codes)
- 2020-06-17 21:40:02下载
- 积分:1
-
TestCalculatorDemo
这是自己编写的一个简易计算器,用于加减乘除计算,还有百分比和平方。(I have written a simple calculator for arithmetic calculations, as well as percentages and square.)
- 2013-11-16 20:02:17下载
- 积分:1
-
assignment2_1
说明: 用最小方差间接自校正控制设计控制器,当被控对象的参数未知时,可首先利用递推增广最小二乘法在线实时估计对象参数,然后再设计最小方差控制律,即将对象参数估计器和控制器的设计分开进行,就形成了最小方差自校正控制间接算法。(The minimum variance indirect self-tuning control is used to design the controller. When the parameters of the controlled object are unknown, the recursive augmented least squares method can be used to estimate the parameters of the object in real time on line. Then the minimum variance control law is designed. The design of the object parameter estimator and the controller are separated, and the minimum variance self-tuning is formed. Positive control indirect algorithm.)
- 2020-06-24 14:20:01下载
- 积分:1
-
这是网络中的一个例子,拿C编出来了,方便大家理解,比较不错的,简单的CRC....
这是网络中的一个例子,拿C编出来了,方便大家理解,比较不错的,简单的CRC.-This is an example of the network, holding out for a C to facilitate understanding, a good comparison, a simple CRC.
- 2022-11-25 21:45:03下载
- 积分:1
-
flyme7 root
说明: 146849215+8182161261281(1456216126184581hrhrqhq)
- 2020-06-20 09:20:01下载
- 积分:1
-
xlic
用于ise和vivado的license(license for ise and vivado)
- 2018-05-18 18:01:10下载
- 积分:1
-
Mcman
汪利宏mcml使用说明文档,包括如何设置光束参数等(WANG Li-hong mcml the use of documentation, including how to set the beam parameters, etc.)
- 2021-04-08 10:59:01下载
- 积分:1
-
6502指令模拟器,可以实现大部分模拟功能,仿真等。适合于刚开始学习6502人员。...
6502指令模拟器,可以实现大部分模拟功能,仿真等。适合于刚开始学习6502人员。-6502 simulator commands, you can realize the majority of analog functions, simulation and so on. Suitable for the beginning of 6502 to study staff.
- 2022-01-30 17:56:11下载
- 积分:1
-
gear_dynamic_program
说明: matlab编写的二级齿轮动力学求解程序,考虑了时变刚度。(Matlab program for solving the dynamics of secondary gears takes into account the time-varying stiffness.)
- 2021-01-27 11:48:35下载
- 积分:1
-
C# 使用数据库列别名的例子
C# 使用数据库列别名的例子。查询数据库信息,定义了一个方法返回DataTable对象:
private DataTable GetMessage()
{
string P_Str_ConnectionStr = string.Format(//创建数据库连接字符串
@"server=WIN-GI7E47AND9RLS;database=db_TomeTwo;uid=sa;pwd=");
string P_Str_SqlStr = string.Format(//创建SQL查询字符串
@"SELECT 学生姓名 as 姓名,年龄 as 学生年龄,性别 as 学生性别 from tb_Student");
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(//创建数据适配器
P_Str_SqlStr, P_Str_ConnectionStr);
DataTable P_dt = new DataTable();//创建数据表
P_SqlDataAdapter.Fill(P_dt);//填充数据表
return P_dt;//返回数据表
}
- 2022-07-22 20:05:58下载
- 积分:1