Dantzig的单纯形算法 用两阶段方法解决线性规划问题(LPP)的Dantzig单纯形算法,以获得初始的基本可行解。 注意仅将SimplexTwoPhase脚本用于教育目的。 该脚本不适合专业应用,因为它并不是Dantzig单纯形算法的最有效,最优化,正确和安全的实现。 关于 该代码以MATLAB语言编写,并支持标准格式的最小化LPP : Minimize cx subject to Ax = b x >= 0 其中c是成本系数向量, x是决策变量的向量, b是要满足的最低需求(需求)的( RHS )向量,而A中的元素a_ij是技术系数。 例子 A = [ 1 2 1 0; -1 1 0 1 ]; b = [4; 1]; c = [-3 1]; [x z] = simplex_two_phase(A, b, c, false) 结果 x
1
matlab如何用代码拟合幂函数正则化线性回归与偏差与方差 在本练习中,您将实现正则化线性回归并将其用于研究具有不同偏差方差属性的模型。 在进行编程练习之前,我们强烈建议您观看视频讲座并完成相关主题的复习问题。 要开始练习,您需要下载启动程序代码并将其内容解压缩到您希望完成练习的目录中。 如果需要,在开始本练习之前,请使用Octave / MATLAB中的cd命令更改为该目录。 您也可以在课程网站的“环境设置说明”中找到有关安装Octave / MATLAB的说明。 这种分配有助于我们理解偏差和方差如何与模型的可预测性不同。 本练习中包含的文件 ex5.m-引导您完成练习的Octave / MATLAB脚本ex5data1.mat-数据集Submit.m-将解决方案发送到我们服务器的提交脚本featureNormalize.m-功能规范化函数fmincg.m-功能最小化例程(类似于fminunc )plotFit.m-绘制多项式拟合trainLinearReg.m-使用您的成本函数训练线性回归 [1] linearRegCostFunction.m-正则化线性回归成本函数 [2] le
2022-04-27 17:23:59 239KB 系统开源
1
中文翻译Introduction to Linear Algebra, 5th Edition 7.1节,仅用于交流学习!
2022-04-27 16:05:43 979KB 线性代数
1
Linear Canonical Transform.docx
2022-04-27 15:30:15 1.27MB Linear Canonical Transform
1
About the Author David C. Lay holds a B.A. from Aurora University (Illinois), and an M.A. and Ph.D. from the University of California at Los Angeles. David Lay has been an educator and research mathematician since 1966, mostly at the University of Maryland, College Park. He has also served as a visiting professor at the University of Amsterdam, the Free University in Amsterdam, and the University of Kaiserslautern, Germany. He has published more than 30 research articles on functional analysis and linear algebra. As a founding member of the NSF-sponsored Linear Algebra Curriculum Study Group.
2022-04-26 13:17:08 28.98MB Linear David Lay
1
Linear Programming.Foundations and Extensions.4Ed.pdf。Robert J. Vanderbei。英文第四版
2022-04-20 11:36:31 5.14MB 线性规划
1
Calculus, Vol. 1 One-Variable Calculus, with an Introduction to to Linear Algebra by Tom M. Apostol
2022-04-15 12:06:07 9.65MB 线性代数 calculus 微积分
1
线性链-crf PyTorch 中的线性链 CRF。 解释此实现的博客文章: : 例子 检查bilstm_crf.py和main.py 。 依赖关系 torch>=0.4.1 :您可以通过运行pip3 install torch安装它 执照 麻省理工学院。 有关更多详细信息,请参阅文件。
2022-04-14 08:49:51 11KB Python
1
Linear Algebra with Applications by Leon Steven
2022-04-13 20:17:42 3.1MB 线性代数
1
中文翻译Introduction to Linear Algebra, 5th Edition 6.5节 仅用于交流学习!
2022-04-13 17:06:18 255KB 线性代数 数学 机器学习
1