Selector / tests /generate_test_data.py
legend1234's picture
Add initial files
b627819
raw
history blame contribute delete
225 Bytes
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)