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