aboutsummaryrefslogtreecommitdiffstats
path: root/math2373/lab5/sum_of_nn.m
diff options
context:
space:
mode:
Diffstat (limited to 'math2373/lab5/sum_of_nn.m')
-rw-r--r--math2373/lab5/sum_of_nn.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/math2373/lab5/sum_of_nn.m b/math2373/lab5/sum_of_nn.m
index ea36db5..dd191b7 100644
--- a/math2373/lab5/sum_of_nn.m
+++ b/math2373/lab5/sum_of_nn.m
@@ -1,4 +1,4 @@
-y(1)=0;
+y=0;
for n=1:N
- y(n+1)=y(n)+1/(n^n);
+ y=y+1/(n^n);
end \ No newline at end of file