You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several API reference documentations of HyMD have been naïvely copied or left unchanged though the functions are different.
Some parameters are part of a list, while others are list of lists. Python documentation loosely suggests to care about the dimensionality only for numpy arrays but I'd rather avoid confusion by being explicit.
Example: phi : list[pmesh.pm.RealField] but phi_fourier :list[ list[pmesh.pm.ComplexField], 3] and not phi_fourier : list[pmesh.pm.ComplexField]
The text was updated successfully, but these errors were encountered:
numpy
arrays but I'd rather avoid confusion by being explicit.Example:
phi : list[pmesh.pm.RealField]
butphi_fourier :list[ list[pmesh.pm.ComplexField], 3]
and notphi_fourier : list[pmesh.pm.ComplexField]
The text was updated successfully, but these errors were encountered: