aboutsummaryrefslogtreecommitdiffstats
path: root/math2373/lab5/sum_of_fourths.m
blob: 80c535ff76713391c9cfd780b0a6853f361e8d69 (plain) (blame)
1
2
3
4
y(1)=0;
for n=1:N
    y(n+1)=y(n)+n^4;
end