-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathrobotics.html
463 lines (382 loc) · 25.3 KB
/
robotics.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Robotics with MATLAB</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link href="robotics/f20/undergradStyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1 class="display-1 text-center">Robotics with MATLAB</h1>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top sticky-top">
<a class="navbar-brand" href="#"></a>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/University_of_Illinois_at_Chicago_circle_logo.svg/1200px-University_of_Illinois_at_Chicago_circle_logo.svg.png" width="30" height="30" class="d-inline-block align-top" alt="UIC Picture">
<a class="navbar-brand" href="#"> Top/About</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<!-- All Material !-->
<li class="nav-item active">
<a class="nav-link" href="#FullTable">All Material<span class="sr-only">(current)</span></a>
</li>
<!-- All Material end !-->
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink1" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
CoppeliaSim
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="https://www.youtube.com/playlist?list=PLc7bpbeTIk77hTOItZGt5Fn-zIWmjAblh"><b> Video Playlist: </b>CoppeliaSim Tutorial Videos</a>
<a class="dropdown-item" href="robotics/f20/CoppeliaSim/Coppelia1_modeling_projectile_w_drag.zip"><b> CoppeliaSim 1: </b>Projectile Modeling</a>
<a class="dropdown-item" href="robotics/f20/CoppeliaSim/Coppelia2_modeling_pendulum.zip"><b>CoppeliaSim 2: </b> Pendulum Modeling</a>
<a class="dropdown-item" href="robotics/f20/CoppeliaSim/Coppelia3_control_pendulum.zip"><b>CoppeliaSim 3: </b>Control Pendulum</a>
<a class="dropdown-item" href="robotics/f20/CoppeliaSim/Coppelia4_proximity_vision_sensor.zip"><b>CoppeliaSim 4: </b>Proximity Vision Sensor</a>
<a class="dropdown-item" href="robotics/f20/CoppeliaSim/Coppelia5_inverse_kinematics.zip"><b>CoppeliaSim 5: </b>Inverse Kinematics</a>
<a class="dropdown-item" href="robotics/f20/CoppeliaSim/Coppelia6_pick_and_place1.zip"><b>CoppeliaSim 6: </b> Pick and Place 1</a>
<a class="dropdown-item" href="robotics/f20/CoppeliaSim/Coppelia7_pick_and_place2.zip"><b>CoppeliaSim 7: </b>Pick and Place 2</a>
</div>
</li>
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Projects
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="robotics/f20/Projects/project_maze.zip"><b>Project 1: </b> MAZE</a>
<a class="dropdown-item" href="robotics/f20/Projects/project_pick_and_place.zip"><b>Project 2: </b> PICK AND PLACE </a>
<a class="dropdown-item" href="robotics/f20/Projects/project_pong.zip"><b>Project 3: </b> PONG</a>
<a class="dropdown-item" href="robotics/f20/Projects/project_pump_swing.zip"><b>Project 4: </b>PUMP AND SWING</a>
</div>
</li>
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" id="NavbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Downloads/Links</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="robotics/f20/CoppeliaSim.zip"><b>ALL COPPELIASIM LECTURES</b></a>
<a class="dropdown-item" href="robotics/f20/Projects.zip"><b>ALL PROJECTS</b></a>
<a class="dropdown-item" href="robotics/f20/MATLAB.zip"><b>ALL MATLAB CODE</b></a>
<a class="dropdown-item" href="robotics/f20/Lectures.zip"><b>ALL LECTURES</b></a>
<a class="dropdown-item" href="https://pab47.github.io/robotics_archive.html"><b>Archived pages</b></a>
</div>
</li>
<!-- other course !-->
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" id="NavbarDropdownMenuLink2" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">All courses</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="http://tiny.cc/legged"><b>Legged Robotics</b></a>
<a class="dropdown-item" href="http://tiny.cc/robotics"><b>Robotics MATLAB</b></a>
<a class="dropdown-item" href="http://tiny.cc/roboticspy"><b>Robotics Python</b></a>
<a class="dropdown-item" href="http://tiny.cc/mujoco"><b>MuJoCo C</b></a>
<a class="dropdown-item" href="http://tiny.cc/mujocopy"><b>MuJoCo Python</b></a>
<a class="dropdown-item" href="http://tiny.cc/mechatronix"><b>Mechatronics</b></a>
</div>
</li>
<!-- other course ends !-->
<!-- My webpage starts !-->
<li class="nav-item active">
<a class="nav-link" href="https://pab47.github.io">Pranav Bhounsule (homepage)</a>
</li>
<!-- My webpage ends !-->
<!--
<li class="nav-item active">
<a class="nav-link" href="http://tiny.cc/legged">Legged Robotics Course</a>
</li>
-->
<!-- other course !-->
</ul>
</div>
</nav>
<br><br>
<div id ="header" align="center" class="col-xl-12">
<p><b>
<b>About:</b> A first course in robotics. The course emphasizes learning through extensive numerical simulations and animations. Mathematical modeling and theory is explained to build the necessary intuition to develop numeric code. MATLAB code provides examples on how to program the physics, develop controllers, and animate the system (see Downloads/Links: MATLAB links for tutorials). The YouTube playlist is here <a href="http://tiny.cc/robotics_f20">http://tiny.cc/robotics_f20.</a> A free simulator for education, <a href="https://www.coppeliarobotics.com/">CoppeliaSim</a>, is used for modeling and control code is written in Lua. MATLAB 2021 with symbolic and optimization toolbox and CoppeliaSim v4.1.0 (July 21, 2020) were used.
</b></p> </div>
<h3 class="display-1 text-center"> All Material</h3>
<div align="center" class="col-xl-12" id="main">
<table style="width:100%" border="3">
<tr>
<!-- Adding the header colums of content materials and videos -->
<th style="text-align: center"><big><big>Lectures</big></big></th>
<th style="text-align: center"><big><big>Youtube Videos</big></big></th>
<th style="text-align: center"><big><big>Lecture Notes</big></big></th>
<th style="text-align: center"><big><big>Source Code</big></big></th>
</tr>
<tr style="background-color: #f0f0f9">
<td rowspan="3">MATLAB Tutorials and Syllabus</td>
<td> <a href="https://youtu.be/Am2PJmDh0GE">MATLAB Basics</a></td>
<td> <a href="robotics/f20/notes/Lec1b_MATLAB_Basics.pdf">Basics PDF</a></td>
<td rowspan="3" align="center">N/A</td>
</tr>
<tr style="background-color: #f0f0f9">
<td><a href="https://youtu.be/wnK08yAXpPY"> MATLAB Scripts</a></td>
<td><a href="robotics/f20/notes/Lec2a_MATLAB_Scripts.pdf">Scripts PDF</a> </td>
</tr>
<tr style="background-color: #f0f0f9">
<td rowspan="1"> <a href="https://youtu.be/8uRHF3lrc3k"> MATLAB Animations </a></td>
<td> <a href="robotics/f20/notes/Lec2b_MATLAB_Animations.pdf">Animations PDF </a></td>
</tr>
<tr>
<td><b>3. </b> <strong> Coordinate Transformation</strong></td>
<td> <a href="https://youtu.be/2-jMSS5HkvA">Coordinate Transformation </a></td>
<td> <a href="robotics/f20/Lectures/Lec3_Coordinate_Transformation.pdf"> Coordinate Transformation PDF</a></td>
<td align="center"> <a href="robotics/f20/MATLAB/lec11_double_pendulum.zip" >Lec Code 3</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td> <b>4. </b>Forward Kinematics Manipulator</td>
<td> <a href="https://youtu.be/3yTV8lH9SxI">Forward Kinematics Manipulator</a></td>
<td><a href="robotics/f20/Lectures/Lec4_Forward_Kinematics_Manipulator.pdf">Forward Kinematics Manipulator PDF</a></td>
<td align="center"> <a href="robotics/f20/MATLAB/lec4_manipulator_fwd_kinematics.zip">Lec Code 4</a></td>
</tr>
<tr>
<td rowspan="1"><b>5. Inverse Kinematics Manipulator </b> </td>
<td> <a href = "https://youtu.be/Rbi3FwpP8p8">Inverse Kinematics Manipulator</a></td>
<td rowspan="1"> <a href="robotics/f20/Lectures/Lec5_Inverse_Kinematics_Manipulator.pdf">Inverse Kinematics Manipulator PDF</a></td>
<td rowspan="1" align="center"> <a href="robotics/f20/MATLAB/lec5_inverse_kinematics.zip">Lec Code 5</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td>6. Forward Kinematics Manipulator of Differential Wheel</td>
<td> <a href="https://youtu.be/n8Tda3KFvZc">Forward Kinematics Manipulator Differential Wheel</a></td>
<td align=> <a href="robotics/f20/Lectures/Lec6_Forward_Kinematics_DifferentialWheel_Drive.pdf"> Differential Wheel PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec6_car_forward_kinematics.zip">Lec 6 Code</a></td>
</tr>
<tr>
<td><b>7. </b> <strong> Inverse Kinematics of Differential Wheel</strong></td>
<td><a href="https://youtu.be/6oor2CnSx8M">Inverse Kinematics Manipulator Differential Wheel</a></td>
<td><a href="robotics/f20/Lectures/Lec7_Inverse_Kinematics_DifferentialWheel_Drive.pdf">Inverse Kinematics Manipulator Differential Wheel Pdf</a></td>
<td align="center"> <a href="robotics/f20/MATLAB/lec7_car_inverse_kinematics.zip">Lec 7 Code</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td>8. Euler-Lagrange Projectile</td>
<td> <a href="https://youtu.be/fix1m2Wmyh0">Euler-Lagrange Projectile</a></td>
<td> <a href="robotics/f20/Lectures/Lec8_EulerLagrange_Projectile.pdf">Projectile PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec8_simple_projectile.zip">Lec 8 Code</a></td>
</tr>
<tr>
<td rowspan="1"><b>9. Euler-Lagrange Symbolics</b></td>
<td> <a href="https://youtu.be/oLgkobyyprs">Hybrid Systems Bouncing Ball Example</a></td>
<td><a href="robotics/f20/Lectures/Lec9_EulerLagrange_Symbolics.pdf">Hybrid Intro PDF</a></td>
<td rowspan="1" align="center"><a href="robotics/f20/MATLAB/Lec9_symbolic_differentiation.zip">Lec 9 Code</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td>10. Solving boundary Value Problems</td>
<td> <a href="https://youtu.be/64Vvx8Pqsfc">Solving boundary Value Problems</a></td>
<td> <a href="robotics/f20/Lectures/Lec10_SolvingBoundaryValueProblem_Projectile.pdf">Boundary Value Probelms PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec10_boundary_value_problem_projectile.zip">Lec 10 Code</a></td>
</tr>
<tr>
<td><b>11. </b>Euler-Lagrange Double Pendulum.</td>
<td> <a href="https://youtu.be/hAOl5kPH0Ig">Euler-Lagrange </a></td>
<td> <a href="robotics/f20/Lectures/Lec11_EulerLagragne_DoublePendulum.pdf">Euler-Lagrange PDF</a></td>
<td align="center"> <a href="robotics/f20/MATLAB/lec11_double_pendulum.zip">Lec 11 Code</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td rowspan="1"><b>12. </b>Jacobian Applications</td>
<td rowspan="1"><a href="https://youtu.be/yFh-HDtPbgQ">Jacobian</a></td>
<td> <a href="robotics/f20/Lectures/Lec12_Jacobian_Applications.pdf"> Jacobian PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec12_jacobian.zip">Lec 12 Code</a></td>
</tr>
<tr>
<td rowspan="1"><b>13. </b><strong>Hybrid Systems</strong></td>
<td> <a href="https://youtu.be/G0baxHWBFmA">Hybrid Systems</a></td>
<td><a href="robotics/f20/notes/Lec11_Closed_Loop_Chains.pdf">Hybrid Systems PDF</a></td>
<td align="center"> <a href="robotics/f20/code/Lec11a_ClosedLoopSystems.zip">Lec 13 Code</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td><b>14. </b>Passive Dynamic Walking (PDW) (part1)</td>
<td><a href="https://youtu.be/UmQTyzzh2EE">Passive Dynamic Walker 1 </a></td>
<td><a href="robotics/f20/Lectures/Lec14_Passive_Dynamic_Walking1.pdf">PDW 1 PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr>
<td><b>15. </b><strong>Passive Dynamic Walking (part2)</strong></td>
<td><a href="https://youtu.be/kSy6ODsssKM">Passive Dynamic Walker 2 </a></td>
<td><a href="robotics/f20/Lectures/Lec15_Passive_Dynamic_Walking2.pdf">PDW 2 PDF </a></td>
<td align="center">N/A</td>
</tr>
<tr style="background-color: #f0f0f9">
<td rowspan="1"><b>16. </b>Passive Dynamic Walking (part3)</td>
<td><a href="https://youtu.be/tXQ4nLX-omY">Passive Dynamic Walker 3</a></td>
<td><a href="robotics/f20/Lectures/Lec16_Passive_Dynamic_Walking3.pdf">PDW 3 PDF</a></td>
<td align="center"> <a href="robotics/f20/MATLAB/lec16_passive_walker.zip">Lec 16 Code</a></td>
</tr>
<tr>
<td rowspan="1"><b>17. </b><strong>Constrained and Unconstrained Optimization</strong></td>
<td><a href="https://youtu.be/IfuQ-Bhly8I">Const. and Unconst. Optimization</a></td>
<td><a href="robotics/f20/Lectures/Lec17_Constrained_Unconstrained_Optimization.pdf">Const. and Unconst. Optimization PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec17_optimization.zip">Lec 17 Code</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td><b>18. </b>Trajectory Optimization (part1)</td>
<td> <a href="https://youtu.be/HVIQofPmYsA">Trajectory Optimization 1</a></td>
<td><a href="robotics/f20/Lectures/Lec18_Trajectory_Optimization1.pdf"> Trajectory Optimization 1 PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr>
<td><b>19. </b><strong>Trajectory Optimization (part2)</strong></td>
<td><a href="https://youtu.be/CJ-KENnfIuw">Trajectory Optimization 2</a></td>
<td><a href="robotics/f20/Lectures/Lec19_Trajectory_Optimization2.pdf">Trajectory Optimization 2 PDF</a></td>
<td align="center"> <a href="robotics/f20/MATLAB/lec19_trajectory_optimization.zip">Lec 19 Code</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td rowspan="1"><b>20. </b>3D Rotations</td>
<td> <a href="https://youtu.be/AhzyJfddNeE">3D Rotations</a></td>
<td><a href="robotics/f20/Lectures/Lec20_3D_rotations.pdf">3D Rotations PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec20_intro_rotations.zip">Lec 20 Code</a></td>
</tr>
<tr>
<td><b>21. </b><strong>Euler Angles</strong></td>
<td><a href="https://youtu.be/VQkzUo89heg">Euler-Angles</a></td>
<td> <a href="robotics/f20/notes/Lec18_Deubgging_Trajectory_Optimization.pdf">Euler-Angles PDF</a><br></td>
<td align="center">N/A</td>
</tr>
<tr style="background-color: #f0f0f9">
<td> <b>22. </b>3D Angular Velocity (part1)</td>
<td><a href="https://youtu.be/gqwtBAvg8hY">3D Angular Velocity 1</a></td>
<td> <a href="robotics/f20/Lectures/Lec22_3D_Angular_Velocity1.pdf">3D Angular Velocity 1 PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr>
<td> <b>23. </b><strong>Angular Velocity (part2)</strong></td>
<td><a href="https://youtu.be/qCcqskOfc98">3d Angular Velocity 2</a></td>
<td><a href="robotics/f20/Lectures/Lec23_3D_Angular_Velocity2.pdf">Angular Velocity 2 PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr style="background-color: #f0f0f9">
<td> <b>24. </b>3D Dynamics</td>
<td><a href="https://youtu.be/m4mb9n6c7Ns">3D Dynamics Video</a></td>
<td><a href="robotics/f20/Lectures/Lec24_3D_Dynamics.pdf">3D Dynamics PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec24_3D_dynamics.zip"> Lec 24 Code</a></td>
</tr>
<!--This is one of those weird units where there are multiple numbers on it-->
<tr>
<td><b>25. and 26 </b><strong>3D Quadcopter</strong></td>
<td><a href="https://youtu.be/4hlQ2pf842U">Quadcopter</a></td>
<td><a href="robotics/f20/Lectures/Lec25_26_3D_Quadcopter.pdf">Quadcopter PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec25_3D_quadcopter.zip"> Lec 25 Code</a></td>
</tr>
<!--This is one of those weird units where there are multiple numbers on it-->
<tr style="background-color: #f0f0f9">
<td><b>27. </b>3D Homogeneous Transformations</td>
<td> <a href="https://youtu.be/3LQOYZab4LQ">3D Transformations</a></td>
<td> <a href="robotics/f20/Lectures/Lec27_3D_Homogenous_Transformations.pdf">3D Transformations PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr>
<td><b>28. </b>Denavit Hartenberg (DH) Transformation</td>
<td> <a href="https://youtu.be/lEgiTJdhHIQ">Denavit-Hartenberg</a></td>
<td><a href="robotics/f20/Lectures/Lec28_Denavit_Hartenberg_Handout.pdf">DH transformation PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr style="background-color: #f0f0f9">
<td><b>28.1 </b>Manipulator Kinematics (part1)</td>
<td> <a href="https://youtu.be/ercxaK08Mj8">Manipulator Kinematics 1</a></td>
<td> <a href="robotics/f20/Lectures/Lec27_3D_Homogenous_Transformations.pdf">Manipulator Kinematics PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr>
<td><b>29. </b><strong>Manipulator Kinematics (part2)</strong></td>
<td><a href="https://youtu.be/ercxaK08Mj8"> Manipulator Kinematics 2</a> </td>
<td><a href="robotics/f20/Lectures/Lec29_3D_Manipulator_Kinematics2.pdf">Manipulator Kinematics 2 PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr style="background-color: #f0f0f9">
<td><b>30. </b>Manipulator Kinematics (part3)</td>
<td> <a href="https://youtu.be/YJkDWqBWhKU">Manipulator Kinematics 3</a></td>
<td><a href="robotics/f20/Lectures/Lec30_3D_Manipulator_Kinematics3.pdf">Manipaulator Kinematics 3 PDF</a></td>
<td align="center">N/A</td>
</tr>
<tr>
<td><b>31. </b>Manipulator Inverse Kinematics</td>
<td> <a href="https://youtu.be/LSprDt2kwlU">Manipulator Inverse Kinematics</a></td>
<td><a href="robotics/f20/Lectures/Lec31_3D_Manipulator_Inverse_Kinematics.pdf">Manipulator Inverse Kinematics PDF</a></td>
<td align="center"> <a href="robotics/f20/MATLAB/lec31_3dmanipulator.zip">Lec 31 Code</a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td rowspan="1"><b>32 and 33. </b>Trajectory Generation</td>
<td> <a href="https://youtu.be/RVRaaKkbqzM">Trajectory Generation</a></td>
<td rowspan="1"><a href="robotics/f20/Lectures/Lec32_33_Trajectory_Generation.pdf">Trajectory Generation PDF</a></td>
<td rowspan="1" align="center"> <a href="robotics/f20/MATLAB/lec32_trajectory_generation.zip"> Lec 32/33 Code</a></td>
</tr>
<tr>
<td> <b>34. </b> <strong> Manipulator Control (part1)</strong></td>
<td> <a href="https://youtu.be/kZH1J16wiDg">Manipulator Control 1</a></td>
<td> <a href="robotics/f20/Lectures/Lec34_3D_Manipulators_Control1.pdf">Manipulators Control 1 PDF</a></td>
<td align="center"> <a href="robotics/f20/MATLAB/lec34_simple_pd.zip"> Lec 34 Code </a></td>
</tr>
<tr style="background-color: #f0f0f9">
<td> 35. Manipulator Control (part2)</td>
<td> <a href="https://youtu.be/wVwjYHocd6k">Manipulator Control 2</a></td>
<td> <a href="robotics/f20/Lectures/Lec35_3D_Manipulators_Control2.pdf">Manipulator Control 2 PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec35_control_partitioning.zip">Lec code 35</a></td>
</tr>
<tr>
<td rowspan="3"> 36. Manipulators Control (part3)</td>
<td rowspan="3"> <a href="https://youtu.be/hkZdG6YumVg">Manipulator Control 3</a></td>
<td rowspan="3"><a href="robotics/f20/Lectures/Lec36_3D_Manipulators_Control3.pdf">Manipulator Control 3 PDF</a></td>
<td align="center"><a href="robotics/f20/MATLAB/lec36_pendulum_trajectory_tracking.zip">Lec 36.1 code</a></td>
</tr>
<tr>
<td align="center"><a href="robotics/f20/MATLAB/lec36_twolink_cartesian_control.zip">Lec 36.2 code</a></td>
</tr>
<tr>
<td align="center"><a href="robotics/f20/MATLAB/lec36_twolink_trajectory_tracking.zip">Lec 36.3 code</a></td>
</tr>
</table> </div>
<br><br>
<h1 class="display-2 text-center"> Projects</h1>
<div align="center" class="col-xl-12">
<table style="width:100%" border="3">
<tr>
<!-- Adding the header colums of content materials and videos -->
<th style="text-align: center"><big><big>Projects</big></big></th>
<th style="text-align: center"><big><big>Content (PDF Inside)</big></big></th>
</tr>
<tr style="background-color: #f0f0f9" align="center">
<td rowspan="1" align="center"><strong><big>Project 1: Pong game</big></strong></td>
<td rowspan="1"> <a href="robotics/f20/Projects/project_pong.zip">PONG PROJECT DOWNLOAD</a></td>
</tr>
<tr align="center">
<td rowspan="1" align="center"><strong><big>Project 2: Pumping a swing</big></strong></td>
<td rowspan="1"> <a href="robotics/f20/Projects/project_pump_swing.zip">PUMP SWING DOWNLOAD</a></td>
</tr>
<tr style="background-color: #f0f0f9" align="center">
<td rowspan="1" align="center"><strong><big>Project 3: Maze navigation</big></strong></td>
<td rowspan="1"> <a href="robotics/f20/Projects/project_maze.zip">MAZE DOWNLOAD</a></td>
</tr>
<tr align="center">
<td align="center" rowspan="1"><strong><big>Project 4: Pick and place robot</big></strong></td>
<td rowspan="1"> <a href="robotics/f20/Projects/project_pick_and_place.zip">PICK AND PLACE DOWNLOAD</a></td>
</tr>
</table> </div>
<br>
<!-- Comment here-->
<br>
<ul>
<li>Website design by Mohammed Hassan. </li>
<li>Comments/Suggestions to Pranav A. Bhounsule (pranavb129 at gmail.com) </li>
<li>Last updated: Nov 27, 2022</li>
</ul>
<br>
<!-- line break-->
<!--Comment here-->
<!-- Default Statcounter code for Robotics Course
pab47.github.io -->
<script type="text/javascript">
var sc_project=11191906;
var sc_invisible=0;
var sc_security="1fea5e5a";
var scJsHost = "https://";
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="Web Analytics
Made Easy - Statcounter" href="https://statcounter.com/"
target="_blank"><img class="statcounter"
src="https://c.statcounter.com/11191906/0/1fea5e5a/0/"
alt="Web Analytics Made Easy - Statcounter"
referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
<!-- End of Statcounter Code -->
</body>
</html>