Describe the bug
I'm following the steps on
https://nbodykit.readthedocs.io/en/latest/
and at this line
result = FFTPower(mesh, Nmu=5)
I get the error
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/tmp/ipykernel_1044199/248341081.py in <module>
----> 1 result = FFTPower(mesh, Nmu=5)
TypeError: __init__() missing 1 required positional argument: 'mode'
Looks like it needs a mode argument,
result = FFTPower(mesh, '1d', Nmu=5)
Describe the bug
I'm following the steps on
https://nbodykit.readthedocs.io/en/latest/and at this line
result = FFTPower(mesh, Nmu=5)I get the error
Looks like it needs a
modeargument,result = FFTPower(mesh, '1d', Nmu=5)