Plotting a line moving down straight vertically. Both the lines are not rotating in symmetry.

1 Ansicht (letzte 30 Tage)
L1=60;
L2=15;
t=60;
for t1=t:-1:0
plot([-L1*cosd(t),0],[L1*sind(t1),0]);
hold on
grid on
plot([0,L2*cosd(t1)],[0,-L2*sind(t1)]);
axis([-70 70 -70 70]);
hold off
pause(0.1);
end

Antworten (1)

KALYAN ACHARJYA
KALYAN ACHARJYA am 7 Mär. 2021
Bearbeitet: KALYAN ACHARJYA am 7 Mär. 2021
"Both the lines are not rotating in symmetry."
plot([-L1*cosd(t1),0],[L1*sind(t1),0]); % First Line
%..............^changed here
Now both lines are rotating in equal manner, are you looking for this one?
  9 Kommentare
Neelesh Sharma
Neelesh Sharma am 7 Mär. 2021
The lines L1 and L2 will be straight in the first line and last line but not in between as shown in fig attached. They should be in straight line always.

Melden Sie sich an, um zu kommentieren.

Tags

Produkte


Version

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by