Created
November 20, 2019 09:30
-
-
Save Cj1m/5f38b87f9b0d39aedfe994fb883f0148 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a23 = np.matrix([math.cos(link2_angle[0]), 0, math.sin(link2_angle[0]), 0], | |
[0, 1, 0, 0], | |
[-math.sin(link2_angle[0]), 0, math.cos(link2_angle[0]), 0], | |
[0,0,0,1]) | |
a34 = np.matrix([1,0,0,0], | |
[0, math.cos(link3_angle[1]), -math.sin(link3_angle[1]), 0], | |
[0, math.sin(link3_angle[1]), math.cos(link3_angle[1]), 3], | |
[0,0,0,1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment