Skip to content

Commit

Permalink
Update and rename Romberg.m to romberg.m
Browse files Browse the repository at this point in the history
  • Loading branch information
kwyip authored Jul 2, 2017
1 parent d7a3eff commit 49d1a02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Romberg.m → romberg.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
%input function f, a and b lower and upper intervals, larger the n higher the accuracy
function r = Romberg(f, a, b, n) %Romberg
%Ka Wa Yip (kwyip)
function r = romberg(f, a, b, n) %Romberg
%r - Romberg table storing the computed integrals.
r = zeros(n+1, n+1);
h = b - a;
Expand Down

0 comments on commit 49d1a02

Please sign in to comment.