-
用基本C++语言实现的解决运筹学对偶问题的程序,需要提交对偶问题程序的朋友可以一试...
用基本C++语言实现的解决运筹学对偶问题的程序,需要提交对偶问题程序的朋友可以一试-With the basic C++ Realize the language of operations research on the dual problem solution procedure, required to submit to the dual problem procedures friends can one test
- 2023-09-06 12:45:03下载
- 积分:1
-
产品进销存管理系统
针对某一种行业的库房的产品进销存情况进行管理。 1、采用一定的存储结构对库房的货品及其数量进行分类管理; 采用链表的结构对产品的各种信息进行存储,对存储的信息才用了结构体,同时用到指针变量,采用尾插法建立带头节点的链表,尾指针初始指向头结点,如果要继续添加信息,把终端结点指针置空,返回链表头指针。 2、可以进行产品类的添加、产品的添加、产品数量的添加; 在这一部分,我把它做成了一个整体,即同时进行产品的各种信息的添加,通过在链表head中插入结点来实现。 3、能够查询库房每种产品的总量、进货日期、销出数量、销售时间等; 在这一部分,设计一个链表的查找,通过选择商品号还是商品名称 进行查找,对商品进行循环查询,找到产品时,显示查询到的产品的各项信息,查不到商品时输出没有查到要查找的通讯信息 其他: 还做了链表结点的删除,用于进行将无用信息的删除,通过调用查找函数,查到时,释放该结点空间。
- 2022-02-27 01:19:57下载
- 积分:1
-
3d cylinder vortex meshing
3d cylinder vortex meshing
- 2022-02-12 07:27:22下载
- 积分:1
-
matlab 快速 dtw 在线
快速的dtw算法,用于语音和手写字体真伪识别,原理简单,实现方便,适合刚刚接触的人上手~
- 2022-03-18 22:18:01下载
- 积分:1
-
指数回归方程 ExponentRegress.cs
方程模型为
public override double[] buildFormula()...
指数回归方程 ExponentRegress.cs
方程模型为
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double forecast(double x)
预测函数,根据模型得到预测结果。
public override double computeR2()
计算相关系数(决定系数),系数越接近1,数据越满足该模型。
- 2023-06-14 17:20:02下载
- 积分:1
-
binary tree before preorder
二叉树的前序遍历-binary tree before preorder
- 2023-02-19 19:05:03下载
- 积分:1
-
dsdv---附带中文注释的DSDV源码
这是在ns2中模拟无线传感路由的算法的一个代码,希望可以帮到大家,里面有详细的中文注解,可以帮助英语不是太好的同学来学习,该代码具体实现了算法的各个步骤,有效的帮助大家学习,祝大家早日学有收成。也希望大家多分享自己的东西,大家共同进步。
- 2022-04-28 17:28:34下载
- 积分:1
-
这是一个简单的演示如何评价文本的数学表达式
This a simple demo of how to evaluate mathematical expressions in text
format, including provision for variables and functions. The code consists of
three simple classes: 1) Calc - which does the main calculations, 2) Stack -
which is used to push and pop intermediate operators and numbers and 3)
Symbol Table. The symbol table is a collection of calc symbols, a type structure
consisting of various elements, including the expression name, function name,
and the final value of the expression The evaluation procedure is done in three
steps: 1) simplify the expression by removing all the elements within () and
storing them in subexpressions within the symbol table. 2) Each of these sub
expressions are then converted to RPN format (Reverse polar notation) and
evaluated 3) Finally, the main expression is converted to RPN and evaluated-This is a simple demo of how to evaluate mathematical expressions in text
format, including provision for variables and functi
- 2022-02-20 06:26:41下载
- 积分:1
-
从出版社求得的经典数值算法
从出版社求得的经典数值算法-Press obtained from the classical numerical algorithm
- 2022-05-30 22:47:35下载
- 积分:1
-
1024点流水线结构FFT算法
FFT是离散傅立叶变换的快速算法,可以将一个信号变换到频域。有些信号在时域上是很难看出什么特征的,但是如 果变换到频域之后,就很容易看出特征了。这就是很多信号 分析采用FFT变换的原因。另外,FFT可以将一个信号的频谱 提取出来,这在频谱分析方面也是经常用的。虽然很多人都知道FFT是什么,可以用来做什么,怎么去 做,但是却不知道FFT之后的结果是什意思、如何决定要使用 多少点来做FFT。具体的频率细分法可参考相关文献。
- 2022-06-20 01:59:40下载
- 积分:1