6 lines
48 B
Matlab
6 lines
48 B
Matlab
y = 0;
|
|
n = 100;
|
|
for i=1:n
|
|
y=y+1/(i*i);
|
|
end
|
|
y |