How can I print two equal size arrays aligned by rows?
For example:
a = np.array([[1],
[2],
[3],
[4]])
rv = np.array([["R1x ="],
["R1y ="],
["R5x ="],
["R5y ="]])
print(rv, a)
I want that the code prints the code below:
R1x = 1
R1y = 2
R5x = 3
R5y = 4