I have the following array:
[9.975 9.976 9.977 9.978 9.979 9.98 9.981 9.982 9.983 9.984 9.985 9.986
9.987 9.988 9.989 9.99 9.991 9.992 9.993 9.994]
Now, I would like to copy these values in n columns in the same row. The result should look like this:
[[9.975 9.975 9.975],
[9.976 9.976 9.976],
.....
[9.994 9.994 9.994]]
Do you know how this is possible?
Thanks in advance.