aboutsummaryrefslogtreecommitdiffstats
path: root/math2373/lab6/approx.m
diff options
context:
space:
mode:
authorMatthew Strapp <msattr@gmail.com>2019-10-15 14:02:47 -0500
committerMatthew Strapp <msattr@gmail.com>2019-10-15 14:02:47 -0500
commit4f60ebca5fc91a46232733b8e4ebfc5d6752a895 (patch)
tree4e2ae42894c7b7a0c177bd18ac21ae5225bca173 /math2373/lab6/approx.m
parentHelp (diff)
downloadhomework-4f60ebca5fc91a46232733b8e4ebfc5d6752a895.tar
homework-4f60ebca5fc91a46232733b8e4ebfc5d6752a895.tar.gz
homework-4f60ebca5fc91a46232733b8e4ebfc5d6752a895.tar.bz2
homework-4f60ebca5fc91a46232733b8e4ebfc5d6752a895.tar.lz
homework-4f60ebca5fc91a46232733b8e4ebfc5d6752a895.tar.xz
homework-4f60ebca5fc91a46232733b8e4ebfc5d6752a895.tar.zst
homework-4f60ebca5fc91a46232733b8e4ebfc5d6752a895.zip
Funny commit name
Diffstat (limited to 'math2373/lab6/approx.m')
-rw-r--r--math2373/lab6/approx.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/math2373/lab6/approx.m b/math2373/lab6/approx.m
new file mode 100644
index 0000000..8fb87f2
--- /dev/null
+++ b/math2373/lab6/approx.m
@@ -0,0 +1,6 @@
+z=8-2*2-7*exp(-2/2);%exact solution at t=2
+for k=1:5
+ N=5*2^(k-1);eulerN;
+ %difference between Euler approximation and exact solution at t=2.
+ error(k)=y(N+1)-z;
+end \ No newline at end of file