登录
首页 » matlab » Matlab

Matlab

于 2020-10-15 发布 文件大小:34KB
0 274
下载积分: 1 下载次数: 182

代码说明:

  matlab程序非线性优化设计方法时下流行的关于非线性规划的源程序,包括SQP方法、乘子法程序、二次规划、非线性最小二乘法、共轭梯度法、拟牛顿法、线搜索技术、信赖域方法、最速下降法与牛顿法等(matlab program nonlinear optimization design method popular on nonlinear programming source code, including the SQP method, the multiplier method procedures, quadratic programming, nonlinear least squares method, the conjugate gradient method, quasi-Newton method, the linesearch technology, trust region methods, the steepest descent method and Newton method)

文件列表:

Matlab程序
..........\dfun1.m,65,2009-09-25
..........\dgfun1.m,66,2009-09-25
..........\dhfun.m,53,2009-09-25
..........\dpfun.m,823,2009-09-25
..........\ff.m,70,2009-09-03
..........\fun.m,52,2009-08-29
..........\fun1.m,66,2009-09-25
..........\gfun.m,81,2009-08-29
..........\gfun1.m,52,2009-09-25
..........\gg.m,128,2009-09-03
..........\gradd.m,722,2009-09-03
..........\Hess.m,149,2009-09-04
..........\hfun.m,96,2009-09-25
..........\phi.m,32,2009-08-28
..........\SQP方法
..........\.......\lagsqp.asv,4153,2009-11-16
..........\.......\lagsqp.m,4171,2009-11-16
..........\.......\newtlagr.asv,3659,2009-11-14
..........\.......\newtlagr.m,3691,2009-11-16
..........\.......\qpsubp.asv,4608,2009-12-31
..........\.......\qpsubp.m,4608,2009-12-31
..........\.......\sqpm.asv,4271,2009-11-24
..........\.......\sqpm.m,4273,2009-12-31
..........\乘子法程序
..........\..........\bfgs.m,1083,2009-10-15
..........\..........\df1.m,57,2009-10-15
..........\..........\dg1.m,53,2009-10-15
..........\..........\dh1.m,42,2009-10-15
..........\..........\dmpsi.m,311,2009-10-15
..........\..........\f1.m,46,2009-10-15
..........\..........\g1.m,44,2009-10-15
..........\..........\h1.m,40,2009-10-15
..........\..........\mpsi.m,367,2011-05-18
..........\..........\multphr.m,1669,2009-10-15
..........\二次规划
..........\........\callqpact.m,177,2009-11-09
..........\........\qlag.asv,296,2009-11-07
..........\........\qlag.m,407,2009-11-07
..........\........\qpact.asv,2199,2009-11-09
..........\........\qpact.m,2243,2009-11-22
..........\信赖域方法
..........\..........\fun.m,52,2009-08-29
..........\..........\gfun.m,81,2009-08-29
..........\..........\Hess.m,149,2009-09-04
..........\..........\trustm.m,1465,2009-09-05
..........\..........\trustq.m,1933,2009-11-26
..........\共轭梯度法
..........\..........\frcg.m,914,2009-09-21
..........\..........\fun.m,52,2009-08-29
..........\..........\gfun.m,81,2009-08-29
..........\拟牛顿法
..........\........\bfgs.m,1083,2009-10-15
..........\........\broyden.m,1036,2009-09-07
..........\........\dfp.m,862,2009-09-07
..........\........\fun.m,52,2009-08-29
..........\........\gfun.m,81,2009-08-29
..........\........\sr1.m,785,2009-09-06
..........\最速下降法与牛顿法
..........\..................\dampnm.m,1158,2009-09-05
..........\..................\fun.m,52,2009-08-29
..........\..................\gfun.m,81,2009-08-29
..........\..................\grad.m,617,2009-09-05
..........\..................\Hess.m,149,2009-09-04
..........\..................\revisenm.m,1213,2009-09-05
..........\线搜索技术
..........\..........\armijo.m,256,2009-08-29
..........\..........\golds.m,955,2009-12-31
..........\..........\qmin.m,2240,2009-12-31
..........\非线性最小二乘问题
..........\..................\Fk.m,120,2010-03-27
..........\..................\JFk.m,109,2010-03-27
..........\..................\lmm.m,1164,2009-09-24

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • EM_GM
    % EM algorithm for k multidimensional Gaussian mixture estimation % % Inputs: % X(n,d) - input data, n=number of observations, d=dimension of variable % k - maximum number of Gaussian components allowed % ltol - percentage of the log likelihood difference between 2 iterations ([] for none) % maxiter - maximum number of iteration allowed ([] for none) % pflag - 1 for plotting GM for 1D or 2D cases only, 0 otherwise ([] for none) % Init - structure of initial W, M, V: Init.W, Init.M, Init.V ([] for none) % % Ouputs: % W(1,k) - estimated weights of GM % M(d,k) - estimated mean vectors of GM % V(d,d,k) - estimated covariance matrices of GM % L - log likelihood of estimates %( EM algorithm for k multidimensional Gaussian mixture estimation Inputs: X (n, d)- input data, n = number of observations, d = dimension of variable k- maximum number of Gaussian components allowed ltol- percentage of the log likelihood difference between 2 iterations ([] for none) maxiter- maximum number of iteration allowed ([] for none) pflag- 1 for plotting GM for 1D or 2D cases only, 0 otherwise ([] for none) Init- structure of initial W, M, V: Init.W, Init.M, Init.V ([] for none) Ouputs: W (1, k)- estimated weights of GM M (d, k)- estimated mean vectors of GM V (d, d, k)- estimated covariance matrices of GM L- log likelihood of estimates)
    2008-04-27 15:51:27下载
    积分:1
  • matlab-1
    cdma matlab codes working
    2012-05-20 16:10:25下载
    积分:1
  • color
    在matlab中 HSV各分量求均值 方差以及三阶矩(Color extraction)
    2013-08-08 01:33:18下载
    积分:1
  • BEM
    使用间接边界元算法求解简单的二维流体力学问题(Fluid dynamic analyse using Boundary Element Method )
    2012-05-02 19:45:24下载
    积分:1
  • the-iamge-matting-with-new-ways
    采用一种新的方法,对图像进行matting,并取得良好的效果(the image matting with good approach)
    2013-10-02 21:23:32下载
    积分:1
  • matlab-program-design
    详细介绍了matlab的程序设计步骤及方法,希望对大家有用(Details the steps and matlab programming, and I hope to be useful)
    2011-10-13 11:05:25下载
    积分:1
  • MATLAB-secret
    一本matlab入门参考书,附上了每一章的学习源码(an introduction to matlab attached with demos every chapter)
    2012-05-30 22:12:23下载
    积分:1
  • MODE
    Multi-objective differential evolution
    2012-05-14 23:11:06下载
    积分:1
  • pf_EKF
    此程序是粒子滤波和扩展卡尔曼滤波器的比较,具有很强的针对性(This procedure is the comparison of particle filtering and extended Kalman filter, is highly targeted)
    2012-08-02 21:24:27下载
    积分:1
  • a20700
    转差频率控制的异步电机矢量控制系统仿真。。(zhuanchapinlvkongzhi)
    2021-01-15 21:18:46下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载