Call Romberg.m to perform Romberg integration with specified tolerance and gives results
Call RombergDisp.m to display Romberg integration scheme coefficients
Icon image: An Introduction to Numerical Methods and Analysis, 2nd Edition
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [I] = Romberg(func,a,b,tol,kmax)
Romberg integrates function "func" of one variable and nonsingular 
from "a" to "b" with tolerance "tol" and maximum order of "kmax". 
0 < tol < 1 & kmax > 0. Using Romberg integration.
I = Romberg(@func,a,b,tol,kmax)
I = Romberg(@func,a,b,tol)ss,ssdefault kmax = 15
I = Romberg(@func,a,b)ss,ssdefault tol = 1e-10ss,ssdefault kmax = 15
e.g. 
I = Romberg(@sin,0,pi)
I = 2.000000000000000
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [] = RombergDisp(func,a,b,k)
Romberg integrates function "func" of one variable and nonsingular 
from "a" to "b" with order of "k" and displays all results. 
k >= 0. Using Romberg integration.
I = RombergDisp(@func,a,b,k)
e.g. 
RombergDisp(@sin,0,pi,2)
0.000000000000000ss
1.570796326794897ss2.094395102393195ss
1.896118897937040ss2.004559754984421ss1.998570731823836
Zitieren als
Mazin Mustafa (2025). Romberg (https://de.mathworks.com/matlabcentral/fileexchange/58286-romberg), MATLAB Central File Exchange. Abgerufen.
Kompatibilität der MATLAB-Version
              Erstellt mit
              R2016a
            
            
              Kompatibel mit allen Versionen
            
          Plattform-Kompatibilität
Windows macOS LinuxKategorien
      Mehr zu Numerical Integration and Differential Equations finden Sie in Help Center und MATLAB Answers
    
  Tags
Quellenangaben
Inspiriert: Romberg
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Live Editor erkunden
Erstellen Sie Skripte mit Code, Ausgabe und formatiertem Text in einem einzigen ausführbaren Dokument.
Upload
| Version | Veröffentlicht | Versionshinweise | |
|---|---|---|---|
| 1.4 | Update | ||
| 1.3 | Update | ||
| 1.2 | correction | ||
| 1.1.0.1 | Revision | ||
| 1.1.0.0 | updates | ||
| 1.0.0.0 | description description | 
