Bisection method

バージョン 1.2.0.0 (303 Bytes) 作成者: Sander Khowaja
Bisection method
ダウンロード: 748
更新 2014/11/1

ライセンスの表示

This code is for bisection method having the stopping criterion as number of iterations. This function accepts three arguments which is the bracket values [x1 x2] and number of iterations which is n. You will need a function to execute this code which is also attached here. Equation on which bisection method is ought to be applied can be changed with in the function file named f.m

引用

Sander Khowaja (2024). Bisection method (https://www.mathworks.com/matlabcentral/fileexchange/48321-bisection-method), MATLAB Central File Exchange. 取得済み .

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

ヒントを得たファイル: bisection.m

Community Treasure Hunt

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

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

function need for this file is
function fx = f(x);
fx = x^2/2-3; %% Enter your function here.
return;

1.1.0.0

function need for this file is
function fx = f(x);
fx = x^2/2-3; %% Enter your function here.
return;

1.0.0.0