Python: интегрировать через 100 функций и переменных интеграции
Я хочу вычислить интеграл в форме: ,
Я изо всех сил, чтобы реализовать это в Python. Есть ли программный способ сделать это? Я попытался сделать это с несколькими циклами for, но я застрял на ошибке SystemError: too many statically nested blocks
,
fs = {}
for i in range(100):
fs[i] = lamda x: x*i
for x1 in np.arange(0,1,.01):
for x2 in np.arange(0,1,.01):
....
for x100 in np.arange(0,1,.01):
for i in range(100):
exec("summ+= fs[i](x%i"%i)
1 ответ
Решение
Конечно, это медленно: часть "for i in range(100)" (1) достигнута 100 * 100 * 100 * ... * 100 (100 '*100's) = 100 ^ 100; и люди говорят, что п ^2 это плохо... В любом случае, я бы сделал это так:
- Put 100 values initialized with 0 into a list.
- for i = 0 to 100 ^ 100:
- go through the list and use the k-th value as the parameter for the k-th function. do the summing thing
- Add 0.1 to the n-th value in the list;
if this value is now == 1; set it to 0 and go to the (n+1)-th value and repeat this procedure until you reach the end of the list or one value is < 1.
Start with the first value in the list.
now you have your sum.