We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loader
Saver
Loading and saving from numpy npz files would be helpful.
The data should be stored in the i and q format in the numpy file, e.g.
np.savez_compressed("file.npz", i=np.real(data), q=np.imag(data)) file = np.load("file.npz") restored_data = file["i"] + 1j * file["q"] assert np.array_equal(data, restored_data)
Additionally, the following parameter for the Saver would be beneficial:
store_astype
np.float16
compress
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Loading and saving from numpy npz files would be helpful.
The data should be stored in the i and q format in the numpy file, e.g.
Additionally, the following parameter for the
Saver
would be beneficial:store_astype
which converts the data type before saving (defaults tonp.float16
)compress
which would use the compressed version of npzThe text was updated successfully, but these errors were encountered: