how to create 3 link robot using robotic toolbox
64 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Cheng Yoong
am 22 Apr. 2011
Kommentiert: Muhammad Zulkarnain Zakaria
am 6 Jun. 2021
I'm trying to create a 3 links revolute robot using robotic toolbox release 8.
I define the links as below:
L1=link([0 1 0 0 0],'standard')
L2=link([0 1 0 0 0],'standard')
L3=link([0 1 0 0 0],'standard')
r=robot({L1 L2 L3})
plot(r,[1 1])
but it returns error"Insufficient columns in q"
how to solve this?
6 Kommentare
esraa
am 25 Apr. 2017
Excuse me I am new to this , but can you tell me on what basis are the values assigned to q1, q2 and q ?
Muhammad Zulkarnain Zakaria
am 6 Jun. 2021
start the toolbox first, use the startup_rvc in command window
Akzeptierte Antwort
Chirag Gupta
am 22 Apr. 2011
Bearbeitet: Walter Roberson
am 21 Feb. 2017
Try this:
L1 = link([0 1 0 0],'standard')
L2 = link([0 1 0 0],'standard')
L3 = link([0 1 0 0],'standard')
r = robot({L1,L2,L3})
plot(r,[1,1,1]);
The last matrix [1,1,1] is the default positions of the links.
To play further, try
drivebot(r)
3 Kommentare
öncü uzun
am 3 Apr. 2020
Undefined function 'link' for input arguments of type 'double'.
it is giving this error
Walter Roberson
am 4 Apr. 2020
The references to link should be references to Link
The functions are from the Peter Corke Robotics toolbox https://petercorke.com/toolboxes/robotics-toolbox/
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Robotics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!