How can I create a (48,64) Numpy array like this:
i, i, i, .....,i
i+0.1, i+0.1,..........,i+0.1
i+0.2, i+0.2,..........,i+0.2
.
.
.
.
i+6.3, i+6.3,..........,i+6.3
0.1 is the fixed difference between rows.
I have solved it perfectly with JoshAdel's answer,
But how about the fixed difference is between columns?i.e.
i,i+0.1,i+0.2.....i+6.3
i,i+0.1,i+0.2.....i+6.3
.
.
.
i,i+0.1,i+0.2.....i+6.3
Thanks a lot!