newuoa matlab包,nlopt-2.2.3.6.1-dll 内含结构拓扑优化的众多数学规划方法,其中包含最小二乘法、移动渐近线法 matlab 238万源代码下载- www.pudn.com...

文件名称: nlopt-2.2.3.6.1-dll891ea1e7dab975064c6bfd22796603ae.gif下载

  收藏√  [443d104427974206832dc4b12407db70.gif

 5  4  3  2  1 fb9128a58cbeaabbeb3718ed75079ccf.gif]

开发工具: matlab

文件大小: 371 KB

上传时间: 2013-03-12

下载次数: 28

提 供 者: 寒水

详细说明:内含结构拓扑优化的众多数学规划方法,其中包含最小二乘法、移动渐近线法-The file includes many methods for topology optimization,such as the method of moving asymptotes.

文件列表(点击判断是否您需要的文件,如果是垃圾请在下面评价投诉):

nlopt-2.2.3.6.1-dll\COPYING

...................\libnlopt-0.def

...................\libnlopt-0.dll

...................\matlab\NLOPT_AUGLAG.m

...................\......\NLOPT_AUGLAG_EQ.m

...................\......\NLOPT_GD_MLSL.m

...................\......\NLOPT_GD_MLSL_LDS.m

...................\......\NLOPT_GD_STOGO.m

...................\......\NLOPT_GD_STOGO_RAND.m

...................\......\NLOPT_GN_CRS2_LM.m

...................\......\NLOPT_GN_DIRECT.m

...................\......\NLOPT_GN_DIRECT_L.m

...................\......\NLOPT_GN_DIRECT_L_NOSCAL.m

...................\......\NLOPT_GN_DIRECT_L_RAND.m

...................\......\NLOPT_GN_DIRECT_L_RAND_NOSCAL.m

...................\......\NLOPT_GN_DIRECT_NOSCAL.m

...................\......\NLOPT_GN_ISRES.m

...................\......\NLOPT_GN_MLSL.m

...................\......\NLOPT_GN_MLSL_LDS.m

...................\......\NLOPT_GN_ORIG_DIRECT.m

...................\......\NLOPT_GN_ORIG_DIRECT_L.m

...................\......\NLOPT_G_MLSL.m

...................\......\NLOPT_G_MLSL_LDS.m

...................\......\NLOPT_LD_AUGLAG.m

...................\......\NLOPT_LD_AUGLAG_EQ.m

...................\......\NLOPT_LD_LBFGS.m

...................\......\NLOPT_LD_LBFGS_NOCEDAL.m

...................\......\NLOPT_LD_MMA.m

...................\......\NLOPT_LD_TNEWTON.m

...................\......\NLOPT_LD_TNEWTON_PRECOND.m

...................\......\NLOPT_LD_TNEWTON_PRECOND_RESTART.m

...................\......\NLOPT_LD_TNEWTON_RESTART.m

...................\......\NLOPT_LD_VAR1.m

...................\......\NLOPT_LD_VAR2.m

...................\......\NLOPT_LN_AUGLAG.m

...................\......\NLOPT_LN_AUGLAG_EQ.m

...................\......\NLOPT_LN_BOBYQA.m

...................\......\NLOPT_LN_COBYLA.m

...................\......\NLOPT_LN_NELDERMEAD.m

...................\......\NLOPT_LN_NEWUOA.m

...................\......\NLOPT_LN_NEWUOA_BOUND.m

...................\......\NLOPT_LN_PRAXIS.m

...................\......\NLOPT_LN_SBPLX.m

...................\......\nlopt_minimize.m

...................\......\nlopt_minimize_constrained.m

...................\......\nlopt_optimize.c

...................\......\nlopt_optimize.m

...................\NEWS

...................\nlopt-python.cpp

...................\nlopt.f

...................\nlopt.h

...................\nlopt.hpp

...................\nlopt.py

...................\README

...................\README-WINDOWS

...................\setup.py

...................\matlab

nlopt-2.2.3.6.1-dll

相关搜索:

拓扑优化

输入关键字,在本站238万海量源码库中尽情搜索:

帮助

[MMA.rar] - 经典的移动渐进优化算法matlat源代码,非常实用。

[TO-99LINES.rar] - 对经典的99行拓扑优化程序计算思想的解释说明

[121.zip] - 区间参数压电智能桁架一体化多目标拓扑优化.

[topology-optimization.zip] - 拓扑优化的文章及代码。一种紧凑的matlab实现拓扑的水平集方法优化。

[Untitled2.rar] - 非线性有限元的弧长法求解,计算非线性杆件的变形

[SIMPandOC.rar] - 在matlab平台上编写的基于SIMP和OC法的拓扑优化程序

[SIMP3D.rar] - 应用有限元方法的三维拓扑优化程序,能够解决三维的拓扑优化问题

[111.rar] - 拓扑优化 PYthon文件 内容很详细可自行学习~~

[kriging.rar] - kriging方法源程序,用于kriging方法构建近似模型,方便易懂

[BP.rar] - BP神经网络的拓扑优化算法-我的心血啊,希望对大家有帮助

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
This function mmasub performs one MMA-iteration, aimed at % solving the nonlinear programming problem: % % Minimize f_0(x) + a_0*z + sum( c_i*y_i + 0.5*d_i*(y_i)^2 ) % subject to f_i(x) - a_i*z - y_i <= 0, i = 1,...,m % xmin_j <= x_j = 0, y_i >= 0, i = 1,...,m %*** INPUT: % % m = The number of general constraints. % n = The number of variables x_j. % iter = Current iteration number ( =1 the first time mmasub is called). % xval = Column vector with the current values of the variables x_j. % xmin = Column vector with the lower bounds for the variables x_j. % xmax = Column vector with the upper bounds for the variables x_j. % xold1 = xval, one iteration ago (provided that iter>1). % xold2 = xval, two iterations ago (provided that iter>2). % f0val = The value of the objective function f_0 at xval. % df0dx = Column vector with the derivatives of the objective function % f_0 with respect to the variables x_j, calculated at xval. % df0dx2 = Column vector with the non-mixed second derivatives of the % objective function f_0 with respect to the variables x_j, % calculated at xval. df0dx2(j) = the second derivative % of f_0 with respect to x_j (twice). % Important note: If second derivatives are not available, % simply let df0dx2 = 0*df0dx. % fval = Column vector with the values of the constraint functions f_i, % calculated at xval. % dfdx = (m x n)-matrix with the derivatives of the constraint functions % f_i with respect to the variables x_j, calculated at xval. % dfdx(i,j) = the derivative of f_i with respect to x_j. % dfdx2 = (m x n)-matrix with the non-mixed second derivatives of the % constraint functions f_i with respect to the variables x_j, % calculated at xval. dfdx2(i,j) = the second derivative % of f_i with respect to x_j (twice). %
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值