用matlab编程计算下面的pi的近似值:

2025-03-10 03:54:24
推荐回答(1个)
回答1:

t=1:99;
y=[2 (2*t).^2./(2*t-1)./(2*t+1)];
prod(y)