• Remix
  • Share
  • New Entry

on 24 Oct 2022
  • 1
  • 11
  • 0
  • 0
  • 238
figure
for ang=0:30:330
pt1=[cosd(ang) -sind(ang);sind(ang) cosd(ang)]*[1;1];
pt2=[cosd(ang) -sind(ang);sind(ang) cosd(ang)]*[2;3];
plot([pt1(1),pt2(1)],[pt1(2),pt2(2)],'k-','LineWidth',5)
hold on
xlim([-5,5]);
ylim([-5,5]);
xlabel('x');
ylabel('y');
end
Remix Tree