I want to Rotate the Vector vc by the rotation matrix in the numpytestarray but i get an ValueError.
This is my Code ( reduced to the essentials)
import numpy as np
vc = np.array([0,0,1])
numpytestarray = np.array([[1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4]])
new_vc = numpytestarray.dot(vc)
print(new_vc)
How can i Fix this Problem?