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
this issue was reported by Gavin Lobo, the following commands failed to return the correct array length using bjdata v0.4.0
import bjdata as bj import numpy as np bj.dumpb(np.array([1,2,3,4],dtype=np.int8)) b'[$i#U\x01\x01\x02\x03\x04'
where the array length #U\x01 was incorrect, should have been #U\x04 as there are 4 elements.
#U\x01
#U\x04
The text was updated successfully, but these errors were encountered:
8ef1b12
No branches or pull requests
this issue was reported by Gavin Lobo, the following commands failed to return the correct array length using bjdata v0.4.0
where the array length
#U\x01
was incorrect, should have been#U\x04
as there are 4 elements.The text was updated successfully, but these errors were encountered: