A MATLAB implementation of the BDQRF root-finding algorithm

版本 1.0.0 (2.9 KB) 作者: David Eagle
MATLAB function for calculating the single real root of a non-linear function using the Bisected Direct Quadratic Regula Falsi method.
7.0 次下载
更新时间 2025/8/7

查看许可证

This submission is a MATLAB implementation of the derivative-free Bisected Direct Quadratic Regula Falsi numerical method described in Vol. 4, 2010, no. 15 of Applied Mathematical Sciences by Robert G. Gottlieb and Blair F. Thompson. The companion zip archive also includes a MATLAB script named demo_bdqrf that solves the seven example functions described in the reference. The MATLAB version was created from the pseudocode provided by the authors.
The syntax of this MATLAB function is as follows;
function [x, y] = bdqrf(f, x1, x2, rtol)
% solve for a single real root of a nonlinear equation
% Bisected Direct Quadratic Regula Falsi (BDQRF)
% Applied Mathematical Sciences, Vol. 4, 2010, no. 15
% input
% f = objective function coded as y = f(x)
% x1 = lower bound of search interval
% x2 = upper bound of search interval
% rtol = algorithm convergence criterion
% output
% x = real root of f(x) = 0
% y = function value at f(x) = 0

引用格式

David Eagle (2025). A MATLAB implementation of the BDQRF root-finding algorithm (https://ww2.mathworks.cn/matlabcentral/fileexchange/181738-a-matlab-implementation-of-the-bdqrf-root-finding-algorithm), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2025a
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

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

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