How Can I Program a Series Using Pi in Matlab?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
AronFridrik
Messages
1
Reaction score
0
How can I program this series

16qr1d.jpg


the n looking symbol is Pi


thanks in advance
Aron
 
Physics news on Phys.org
Here you go.
Code:
n = 1:1000;
sum(1./((2*n-1).^2.*(2*n+1).^2))