dt=np.dtype(">i4"),
what (">i4") means
@pranchal-gupta-f323f38c >i4 stands for int32. where i represents int and 4 represents 4bytes as int32 represents 32 bit = 4 * 8
dt=np.dtype(">i4"),
what (">i4") means
@pranchal-gupta-f323f38c >i4 stands for int32. where i represents int and 4 represents 4bytes as int32 represents 32 bit = 4 * 8