网站大量收购独家精品文档,联系QQ:2885784924

matlab中mathematics+工具箱使用.doc

  1. 1、本文档共21页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
matlab中mathematics工具箱使用

Matlab中Mathematics 工具箱使用 第8章 最优化方法 §8.1最优化非线性函数 工具箱提供的Humps函数,其图像如下: 函数fminbnd可求单变量函数在给定区间的局部最小点,如 x=fminbnd(@humps,0.3,1) x=0.6370 通过设置第4个参数optimset可实现显示迭代列表,如 x = fminbnd(@humps,0.3,1,optimset(Display,iter)) fminsearch 函数求多变量函数的局部极小点。首先,创建三变量函数three_var b=@(x) x(1)^2+2.5*sin(x(2))-x(3)^2*x(1)^2*x(2)^2 a=fminsearch(b,[-0.6,-1.2,0.135]) 0.0000 -1.5708 0.1803 第10章 微积分 ODE求解器 Solver(求解器) Solves These Kinds of Problems (求解问题) Method(方法) ode45 Nonstiff differential equations(非刚性微分方程) Runge-Kutta ode23 Nonstiff differential equations(非刚性微分方程) Runge-Kutta ode113 Nonstiff differential equations (非刚性微分方程) Adams ode15s Stiff differential equations and DAEs(非刚性微分-代数方程) NDFs (BDFs) ode23s Stiff differential equations (刚性微分方程) Rosenbrock ode23t Moderately stiff differential equations and DAEs (中等刚性微分方程和代数方程) Trapezoidal rule ode23tb Stiff differential equations(刚性微分方程) TR-BDF2 ode15i Fully implicit differential equations(全隐式微分方程) BDFs Evaluation and Extension(赋值和延拓) You can use the following functions to evaluate and extend solutions to ODEs. 你能应用如下函数对ODE的数值解解进行赋值和延拓。 Function Description deval Evaluate the numerical solution using the output of ODE solvers (用ODE输出对数值解进行赋值) odextend Extend the solution of an initial value problem for an ODE 对ODE初值问题的解进行延拓 Solver Options(求解器选项) An options structure contains named properties whose values are passed to ODE solvers, and which affect problem solution. Use these functions to create, alter, or access an options structure. 选项结构包含署名属性,其值传递给ODE求解器以影响问题求解。用这些函数可以创建,改变和接受选项结构。 Function(函数) Description(描述) odeset Create or alter options structure for input to ODE solver.(创建和改变选项) odeget Extract properties from options structure created with odeset. (提取属性选项) Output Functions(输出函数) If an output function is specified, the solver calls the specified function after every successful integration step. You can use odeset to specify one of these sample functions as the OutputFcn property, or you can modify the

文档评论(0)

ligennv1314 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档