nass-simscape/Analyse.m

49 lines
630 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)')
2018-04-16 11:43:46 +02:00
hold off
%% Nas
figure
hold on
plot(d1)
plot(d2)
plot(d3)
plot(d4)
plot(d5)
plot(d6)
title('Displacement of Nass leg')
xlabel('time (s)')
ylabel('distance (m)')
hold off