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
Thank you for the code. The read_pos function wasn't working correctly for me in jupyter notebook- error could not find file(). Made the following adjustment if anyone needs it:
with open(pathAPT, 'rb') as f:
data = f.read()
n = int(len(data)/4)
d = struct.unpack('>'+'f'*n,data)
.pos files do not open correctly in Windows systems. Can be fixed by adding option to open as binary file, ie., in function
read_pos
, change to:The text was updated successfully, but these errors were encountered: