Multivariate Newton’s Method (newtons_method_n)

版本 2.2.0 (294.5 KB) 作者: Tamas Kis
Newton's method for finding the root of a differentiable, multivariate, vector-valued function.
416.0 次下载
更新时间 2022/10/17

newtons_method_n View Multivariate Newton’s Method (newtons_method_n) on File Exchange

Newton's method for finding the root of a differentiable, multivariate, vector-valued function.

Syntax

x = newtons_method_n(f,J,x0)
x = newtons_method_n(f,J,x0,opts)
[x,k] = newtons_method_n(__)
[x,k,x_all] = newtons_method_n(__)

Description

x = newtons_method_n(f,J,x0) returns the root of a multivariate, vector-valued function specified by the function handle f, where J is the Jacobian of with respect to (i.e. ) and where x0 () is an initial guess of the root.

x = newtons_method_n(f,J,x0,opts) does the same as the syntax above, but allows for the specification of optional solver parameters. opts is a structure with the following fields:

  • k_max → maximum number of iterations (defaults to 200)
  • return_all → returns estimates at all iteration if set to true (defaults to false)
  • TOL → tolerance (defaults to )

[x,k] = newtons_method_n(__) also returns the number of iterations (k) performed of Newton's method.

[x,k,x_all] = newtons_method_n(__) does the same as the previous syntaxes, but also returns an array (x_all) storing the root estimates at each iteration. This syntax requires that opts.return_all be set to true.

Note

Examples and Additional Documentation

  • See "EXAMPLES.mlx" or the "Examples" tab on the File Exchange page for examples.
  • See "Root_Finding_Methods.pdf" (also included with download) for the technical documentation.

引用格式

Tamas Kis (2026). Multivariate Newton’s Method (newtons_method_n) (https://github.com/tamaskis/newtons_method_n-MATLAB/releases/tag/v2.2.0), GitHub. 检索时间: .

MATLAB 版本兼容性
创建方式 R2021b
兼容任何版本
平台兼容性
Windows macOS Linux
版本 已发布 发行说明
2.2.0

See release notes for this release on GitHub: https://github.com/tamaskis/newtons_method_n-MATLAB/releases/tag/v2.2.0

2.1.0

See release notes for this release on GitHub: https://github.com/tamaskis/newtons_method_n-MATLAB/releases/tag/v2.1.0

2.0.1

See release notes for this release on GitHub: https://github.com/tamaskis/newtons_method_n-MATLAB/releases/tag/v2.0.1

2.0.0

See release notes for this release on GitHub: https://github.com/tamaskis/newtons_method_n-MATLAB/releases/tag/v2.0.0

1.0.1

See release notes for this release on GitHub: https://github.com/tamaskis/fsolve_newton-MATLAB/releases/tag/v1.0.1

1.0.0

要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库
要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库