I have the following 3x3 matrix H and 3x1 matrix point. Calling the matmul function simply returns the original point. Why and how can I fix this?
H = np.array([[1, -1.07059445e-13,7.30192357e-11],[-1.07136486e-13,1,1.19101035e-11],[-2.88444403e-16,9.61481343e-17,1]])
point = np.array([443.8957214, 198.19000244, 1])
np.matmul(H, np.transpose(point))