我有以下用python编写的代码。
def func(r,f):
for k in np.arange(Nb-1):
temp = 0
temp += f[r][k]*f[r][k+1]*np.sqrt(k+1)
return temp
我如何在 Mathematica 中做同样的事情?
我有以下用python编写的代码。
def func(r,f):
for k in np.arange(Nb-1):
temp = 0
temp += f[r][k]*f[r][k+1]*np.sqrt(k+1)
return temp
我如何在 Mathematica 中做同样的事情?