--I created a six jointed robot, which has 6 revolute joints. Now I want to plot it, but I get the out of memory error, how can this be? I am working in a 64bit computer with a i5 processor. Am I doing something wrong?
%%Definition des KUKA KR500 Roboter
%Gelenke
L1 = Link('d', -1045, 'a', 500, 'alpha', pi/2);
L1.isrevolute;
L2 = Link('d', 0, 'a', 1300, 'alpha', 0);
L2.isrevolute;
L3 = Link('d', 0, 'a', 0, 'alpha', pi/2);
L3.isrevolute;
L4 = Link('d', -1025, 'a', 0, 'alpha', -pi/2);
L4.isrevolute;
L5 = Link('d', 0, 'a', 0, 'alpha', pi/2);
L5.isrevolute;
L6 = Link('d', -300, 'a', 0, 'alpha', pi);
L6.isrevolute;
G = [0;0;9.81];
BASE = [ 0 0 1 0 ;
0 1 0 0 ;
1 0 0 0 ;
0 0 0 1 ;];
KUKA = SerialLink([L1, L2, L3, L4, L5, L6], 'name', 'KR500', 'base', BASE);
q = [0 0 0 0 0 0];
>> KUKA.plot(q);
??? Out of memory. Type HELP MEMORY for your options.Error in ==> SerialLink.plot>create_tiled_floor at 575
Z = opt.floorlevel*ones( numel(yt), numel(xt));Error in ==> SerialLink.plot at 245
create_tiled_floor(opt);
You received this message because you are subscribed to the Google Groups "Robotics & Machine Vision Toolboxes" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotics-tool-...@googlegroups.com.
To post to this group, send email to robotics...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotics-tool-box.
For more options, visit https://groups.google.com/d/optout.
KUKA = SerialLink([L1, L2, L3, L4, L5, L6], 'name', 'KR500', 'base', BASE, ‘plotopt’, {’notiles’});
to turn off the tiles, orKUKA = SerialLink([L1, L2, L3, L4, L5, L6], 'name', 'KR500', 'base', BASE, ‘plotopt’, {’tilesize’, 100});to make the tiles a more sensible size.