nass-simscape/Analyse.m

35 lines
465 B
Mathematica
Raw Normal View History

2018-04-13 11:17:49 +02:00
%% Translation stage
figure
plot(ty)
title('Moving y')
xlabel('time (s)')
ylabel('distance (m)')
%% TILT stage
figure
plot(ry)
title('Rotation y')
xlabel('time (s)')
2018-04-16 09:36:09 +02:00
ylabel('angle (rad)')
%% SPINDLE stage
figure
plot(rz)
title('Rotation z')
xlabel('time (s)')
ylabel('angle (rad)')
%% Hexapod Symetrie
figure
hold on
plot(D1)
plot(D2)
plot(D3)
plot(D4)
plot(D5)
plot(D6)
title('Displacement of Hexapod leg')
xlabel('time (s)')
ylabel('distance (m)')
hold off