summaryrefslogtreecommitdiffstats
path: root/Kod/bilbana/studentFunctions/plot_results.m
blob: 34ea2e40a0d3e0ebee270e22a231cab6455c2b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
% Plot the results
figure(100)
subplot(2,1,1)
stairs(car.control_log_time, car.control, 'LineWidth', 2) % Gör en trappstegsplot
xlabel('Time [s]')
ylabel('Control signal [%]')
title('Control signal trajectory')
grid on

subplot(2,1,2)
stairs(car.control_log_time, car.control_log_position, 'r', 'LineWidth', 2)
xlabel('Time [s]')
ylabel('Car position [segment number]')
title('Car position')
grid on