import ETS2.*import ETS2.*
a1 = 1; a2 = 1;
E = Rz('q1') * Tx(a1) * Rz('q2') * Tx(a2)I am experiencing the same problem. Toolbox works like a charm in Chapter 2 but I wanted to begin with Arm Robots and it's giving the same error as you defined. I am using the book as means to understand Robotics with help from the toolbox. I have Matlab R2013b, version 8.1, which has so far given me no problems with Pose and it's manipulations. However, when I run rtbdemo, I can't interact with the interface.
I would really appreciate any kind of help.
Thank you in advance!
Peter
Thanks. That worked. But my path was:
\Documents\MATLAB\Add-Ons\Toolboxes\Robotics Toolbox for MATLAB\code\robot
A search of my HD did not find the rvctools folder. Odd.
Will future installs of the toolbox have the ETS2 and 3 folders in the correct location? The reason I ask is that if I as my students to download the toolbox will I have to provide the Archive.zip file you sent me?
Last.
The CH7 steps work up to the point I try E.teach and then I get the following error. It might be a path thing again that I’ll try to trouble shoot. Seems like a figure problem.
Thanks again Peter for the quick response
-Jason
Warning: arrow option requires arrow3 from FileExchange
> In trplot2 (line 104)
In ETS2/draw_ets (line 685)
In ETS2/plot (line 493)
In ETS2/teach (line 370)
No method 'animate' with matching signature found for class
'ETS2.Rz'.
Error in RTBPlot.teach_callback (line 436)
animate(teachhandles.robot, info.q);
Error in RTBPlot.install_teach_panel (line 381)
RTBPlot.teach_callback([], name, [], teachhandles);
Error in ETS2/teach (line 372)
RTBPlot.install_teach_panel('ETS2', robot, q, opt);
--
You received this message because you are subscribed to a topic in the Google Groups "Robotics & Machine Vision Toolboxes" group.
To unsubscribe from this topic, visit
https://groups.google.com/d/topic/robotics-tool-box/IGekkdbwgko/unsubscribe.
To unsubscribe from this group and all its topics, send an email to
robotics-tool-...@googlegroups.com.
To post to this group, send email to
robotics...@googlegroups.com.
Visit this group at https://groups.google.com/group/robotics-tool-box.
For more options, visit https://groups.google.com/d/optout.
Peter
Thanks. That worked. But my path was:
\Documents\MATLAB\Add-Ons\Toolboxes\Robotics Toolbox for MATLAB\code\robot
A search of my HD did not find the rvctools folder. Odd.
Will future installs of the toolbox have the ETS2 and 3 folders in the correct location? The reason I ask is that if I as my students to download the toolbox will I have to provide the Archive.zip file you sent me?
Last.
The CH7 steps work up to the point I try E.teach and then I get the following error. It might be a path thing again that I’ll try to trouble shoot. Seems like a figure problem.
To unsubscribe from this group and all its topics, send an email to robotics-tool-box+unsubscribe@googlegroups.com.
To post to this group, send email to robotics-tool-box@googlegroups.com.
Peter if this still gets to you. Why do I get this? This makes sense if the function is expecting degrees but I didn’t use the ‘deg’ option. I thought the toolbox was all radians? See below when I give it a radians value.
>> SE3.rpy(0,45,0)
ans =
0.7071 0 0.7071 0
0 1 0 0
-0.7071 0 0.7071 0
0 0 0 1
Not right when given radians.
>> SE3.rpy(0,45*pi/180,0)
ans =
0.9999 0 0.0137 0
0 1 0 0
-0.0137 0 0.9999 0
0 0 0 1
It is equal to the radian solution when I use ‘deg’. Which is completely opposite
>> SE3.rpy(0,45,0,'deg')
ans =
0.9999 0 0.0137 0
0 1 0 0
-0.0137 0 0.9999 0
0 0 0 1
From: robotics...@googlegroups.com [mailto:robotics...@googlegroups.com] On Behalf Of Peter Corke
Sent: Monday, October 16, 2017 7:33 AM
To: Robotics & Machine Vision Toolboxes <robotics...@googlegroups.com>
Subject: [Robotics Toolbox] Re: Importing ETS2 Problem
Sorry guys, the distro is missing some essential packages. Unzip the attached and put +ETS2 and +ETS3 folders into rvctools/robot. Then all should be well. Let me know how it goes.
--
You received this message because you are subscribed to a topic in the Google Groups "Robotics & Machine Vision Toolboxes" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/robotics-tool-box/IGekkdbwgko/unsubscribe.
To unsubscribe from this group and all its topics, send an email to robotics-tool-...@googlegroups.com.
To post to this group, send email to robotics...@googlegroups.com.
obj = SE3( SO3.rpy(varargin{:}) );
To unsubscribe from this group and all its topics, send an email to robotics-tool-box+unsubscribe@googlegroups.com.
To post to this group, send email to robotics-tool-box@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to robotics-tool-box+unsubscribe@googlegroups.com.
To post to this group, send email to robotics-tool-box@googlegroups.com.
--
% end
%
% methods (Access=private)