aboutsummaryrefslogtreecommitdiffstats
path: root/math2373/lab5/multseries.m
blob: ccd2533811524c0213fb0275d1b32d15cb876101 (plain) (blame)
1
2
3
4
5
y=2;
for n=1:N
    x=y*((2*n)*(2*n))/((2*n-1)*(2*n+1));
    y=x;
end