Bisection's method

It's a matlab function that finds a regular real function's zero with the bisection's method.
ダウンロード: 2.7K
更新 2010/12/28

ライセンスの表示

function p_min=bisection(func,int,iter,tol_x,tol_f)
% It calculates the zero of a regular real function with one variable.
% p_min is the solution and represents the abscissa's value of the zero.
% The input variables are:
% -func: it's a string that represents the function in the variable 'x'.
% -int: it's a vector with two elements. The first is the minor bound, the
% second is the greater bound.
% -iter: it's the max number of iteration.
% -tol_x: it's the tolerance on the successive steps.
% -tol_f: it's the tolerance on the successive function's values.

It plots the function's and the solution's trend.

引用

Andrea Cirillo (2024). Bisection's method (https://www.mathworks.com/matlabcentral/fileexchange/29838-bisection-s-method), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2010b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersOptimization についてさらに検索
謝辞

ヒントを与えたファイル: Bisection Method Root Finding

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.1.0.0

Update code

1.0.0.0