bisectguess

版本 1.0.1 (3.5 KB) 作者: Geoff Stanley
bisectguess uses bisection and a guess of the root to provide a fast and robust root-finding method that is compatible with code generation.
26.0 次下载
更新时间 2021/10/1

查看许可证

A root of a function f is found by repeated bisection of a specified interval containing a sign change of f. An initial guess of the root can be provided (as for MATLAB's fzero), outwards from which an interval is geometrically expanded until a sign change is found, then bisection proceeds within that interval. (In the thumbnail image, a root of a quadratic is found, despite that the function is positive at both ends of its domain.)
Only one problem is solved at a time: f is a scalar function whose first argument is a scalar. Extra arguments of f are taken directly from extra arguments to bisectguess. To solve many problems, put bisectguess inside a for loop, inside a wrapper function. To make this fast, use code generation to turn the wrapper function into a fast MEX function -- encapsulating f in the MEX function too.
--- This package is no longer updated here. Instead, get updates from github:

引用格式

Geoff Stanley (2024). bisectguess (https://www.mathworks.com/matlabcentral/fileexchange/69710-bisectguess), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2017b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Linear Algebra 的更多信息
致谢

参考作品: Bisection Method Root Finding

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.1

Update Description. No changes to files.

1.0.0