Why i can't use symbolic values in trvec2tform function from Robotics Toolbox ?
5 views (last 30 days)
Show older comments
Othienno Esperanza
on 26 Jul 2020
Answered: Remo Pillat
on 25 Jan 2021
hello i'm new, and im struggling with this little problem here is the code...i desire to get symbolic equations as output, can you tell me what am I doing wrong? im using Matlab 2018a
syms d O l x y a real
T0f=trvec2tform([d,0,0])*rot2tform(rotz(O))*(trvec2tform([l 0 0]))
T0p=trvec2tform([x y 0])*rot2tform(rotz(a))
here's the output:
% Error using trvec2tform
% Expected t to be one of these types:
%
% single, double
%
% Instead its type was sym.
%
% Error in robotics.internal.validation.validateNumericMatrix (line 21)
% validateattributes(M, {'single','double'}, {'nonempty','real','2d',varargin{:}}, ...
%
% Error in trvec2tform (line 20)
% robotics.internal.validation.validateNumericMatrix(t, 'trvec2tform', 't', ...
0 Comments
Accepted Answer
Remo Pillat
on 25 Jan 2021
Hi Othienno,
Unfortunately, the trvec2tform, rotm2tform, and rotz functions only support numeric inputs, but not symbolic ones. Your feedback is useful and we hope to address it in an upcoming release.
Thanks,
Remo
0 Comments
More Answers (0)
See Also
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!