aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/math2373/lab6/approx.m
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2020-02-09 08:46:52 -0600
committerRossTheRoss <msattr@gmail.com>2020-02-09 08:46:52 -0600
commitbd1d350c376b45e334697851e29b2f79fee0c956 (patch)
treeeb242032a64442caef7a35434400eb0818911e9a /OLD/math2373/lab6/approx.m
parentDo micro prelab (diff)
parentRename file (diff)
downloadhomework-bd1d350c376b45e334697851e29b2f79fee0c956.tar
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.gz
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.bz2
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.lz
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.xz
homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.zst
homework-bd1d350c376b45e334697851e29b2f79fee0c956.zip
Merge branch 'master' of github.com:RosstheRoss/TestingFun
Diffstat (limited to 'OLD/math2373/lab6/approx.m')
-rw-r--r--OLD/math2373/lab6/approx.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/OLD/math2373/lab6/approx.m b/OLD/math2373/lab6/approx.m
new file mode 100644
index 0000000..8fb87f2
--- /dev/null
+++ b/OLD/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