aboutsummaryrefslogtreecommitdiffstats
path: root/math2373/lab6/euler5.m
diff options
context:
space:
mode:
Diffstat (limited to 'math2373/lab6/euler5.m')
-rw-r--r--math2373/lab6/euler5.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/math2373/lab6/euler5.m b/math2373/lab6/euler5.m
new file mode 100644
index 0000000..2de61e3
--- /dev/null
+++ b/math2373/lab6/euler5.m
@@ -0,0 +1,5 @@
+h=2/5; t(1)=0; y(1)=1;
+for n=1:5
+ t(n+1)=t(n)+h;
+ y(n+1)=y(n)+(-y(n)+t(n))*h;
+end \ No newline at end of file