Allow to read and write more dtypes

This commit is contained in:
Dimitri Lozeve 2023-10-04 17:15:13 +02:00
parent 9b2e9b184f
commit 2610d9e8b2
2 changed files with 29 additions and 12 deletions

View file

@ -5,3 +5,15 @@ a←3‿4‿5•rand.Range 0
bLoadNpy"testbqn.npy"
! ab
! ab
floatArr23•rand.Range 0
intArr50-˜23•rand.Range 100
uintArr23•rand.Range 100
"test_float.npy"SaveNpy floatArr
"test_int.npy"SaveNpy intArr
"test_uint.npy"SaveNpy uintArr
floatArrLoadNpy"test_float.npy"
intArrLoadNpy"test_int.npy"
uintArrLoadNpy"test_uint.npy"