Spaces:
Runtime error
Runtime error
File size: 225 Bytes
8bb25b6 | 1 2 3 4 5 6 7 8 9 | import numpy as np
# Create a simple 3x3 matrix
matrix = np.array([[1.0, 2.0, 3.0], [4.0, 5.0, 6.0], [7.0, 8.0, 9.0]])
# Save two identical copies
np.savez("matrix1.npz", arr_0=matrix)
np.savez("matrix2.npz", arr_0=matrix)
|