-
CSOLfuzhuyuanma
CSOL白色辅助全功能源码,里面包含超多功能。直接编译就可以!(CSOL all-white secondary source, which contains super-versatile. Can be directly compiled!)
- 2021-01-13 07:08:48下载
- 积分:1
-
dmc
dmc matlab仿真,输入传递函数,控制时域,预测时域(DMC matlab simulation, input transfer function, control time domain, prediction time domain)
- 2020-09-22 10:17:50下载
- 积分:1
-
CGE equilibrium
可计算的一般均衡模型程序,在GAMS上运行(CGE equilibrium:Computable General Equilibrium;It aims to provide a modle to users on economic research or acdemic purpose.)
- 2018-01-02 18:47:22下载
- 积分:1
-
Copy_top
拓扑优化(topology optimization)是一种根据给定的负载情况、约束条件和性能指标,在给定的区域内对材料分布进行优化的数学方法,是结构优化的一种。该程序基于matlab,提供求解约束优化问题的方法(Topology optimization is a mathematical method to optimize material distribution in a given area according to given load conditions, constraints and performance indicators. It is also a structural optimization method. The program is based on MATLAB and provides a method for solving constrained optimization problems.)
- 2019-05-19 13:52:47下载
- 积分:1
-
VRPTW-master
说明: 基于时间窗的电动车调度,利用了遗传算法,启发式算法进行编程(Electric vehicle scheduling based on time window is programmed by using genetic algorithm and heuristic algorithm.)
- 2020-06-25 00:40:02下载
- 积分:1
-
Singular Value Decomposition matlab procedures, SVD can use this procedure in ad...
奇异值分解的matlab程序,可以利用此svd程序对一维信号进行除噪运算。-Singular Value Decomposition matlab procedures, SVD can use this procedure in addition to one-dimensional signal-noise computing.
- 2022-02-13 05:34:39下载
- 积分:1
-
Wrox.Professional.Apache.Tomcat.5.May.2004
说明: Tomcat 5的外文书目,作者:Vivek Chopra(Professional Apache Tomcat 5 is primarily targeted toward administrators. However, developers (especially
those with additional responsibilities for Tomcat configuration, performance tuning, system security,
or deployment architecture) will find this book extremely useful.)
- 2009-08-20 12:28:24下载
- 积分:1
-
hulf
说明: 设计一个哈夫曼编码器
要求对一段数据序列进行哈夫曼编码,使得平均码长最短,输出各元素编码和编码后的数据序列。
① 组成序列的元素是[0-9]这10个数字,每个数字其对应的4位二进制数表示。比如5对应0101,9对应1001。
② 输入数据序列的长度为256。
③ 先输出每个元素的编码,然后输出数据序列对应的哈夫曼编码序列。(Designing a Huffman Encoder
Huffman coding is required for a data sequence to minimize the average code length and output the coded and coded data sequence of each element.
(1) The elements that make up the sequence are the 10 digits [0-9], and each digit is represented by its corresponding 4-bit binary number. For example, 5 corresponds to 0101, 9 corresponds to 1001.
(2) The length of the input data sequence is 256.
(3) First output the encoding of each element, and then output the Huffman encoding sequence corresponding to the data sequence.)
- 2019-06-19 21:49:58下载
- 积分:1
-
小区物业管理:管理小区的费用、小区工作人员的编排和工资管理、小区的运作、对住户资料的管理、房产资源管理、小区事务的管理、对住户的需要管理、停车场管理...
小区物业管理:管理小区的费用、小区工作人员的编排和工资管理、小区的运作、对住户资料的管理、房产资源管理、小区事务的管理、对住户的需要管理、停车场管理-Area property management: the management of district costs, district staff scheduling and payroll management, district operations, information on household management, property resource management, district management of the affairs of the household needs of management, car park management
- 2023-06-03 09:20:03下载
- 积分: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