Rombint.m

This function performs the numerical evaluation of an integral using the Romberg method.
ダウンロード: 12.7K
更新 2006/6/22

ライセンスの表示

This function performs the numerical evaluation of an integral using the Romberg method.

Q = rombint('F',A,B) approximates the integral of F(X) from A to B to within a relative error of 1e-10 using Romberg's method of integration. 'F' is a string containing the name of the function. The function must return a vector of output values if a vector of input values is given.

Q = rombint('F',A,B,DECIMALDIGITS) integrates with accuracy 10^{-DECIMALDIGITS}.

Q = rombint('F',A,B,DECIMALDIGITS,P1,P2,...) allows coefficients P1, P2, ... to be passed directly to function F: G = F(X,P1,P2,...).

Created under MATLAB 5.2, works with all subsequent releases.

引用

Martin Kacenak (2024). Rombint.m (https://www.mathworks.com/matlabcentral/fileexchange/34-rombint-m), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R10
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersStatistics and Machine Learning Toolbox についてさらに検索
タグ タグを追加
謝辞

ヒントを与えたファイル: rombquad

Community Treasure Hunt

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

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

Description and keywords correction.