dear peter
kindly i am using robotics toolbok 9.10, on matlab 2013a
my code is ;
b=[0,0,1,304.8;0,1,0,0;-1,0,0,508;0,0,0,1]
trplot(b,'color','r')
a=[0.0237,0.9997,-0.0014,-22.5099;-0.9995,0.0238,0.0189,0.5554;0.0190,0.0010,0.9998,146.6948;0,0,0,1]
d=b*a;
trplot(d,'color','g')
my second code is ;
b=[0,0,1,304.8;0,1,0,0;-1,0,0,508;0,0,0,1]
trplot(b,'color','r')
a=[0.0237,0.9997,-0.0014,-22.5099;-0.9995,0.0238,0.0189,0.5554;0.0190,0.0010,0.9998,146.6948;0,0,0,1]
d=b*a;
hold on
trplot(d,'color','g')
i want just to place both frames on the same figure
thanks