summaryrefslogtreecommitdiffstats
path: root/Kod/bilbana/Graph/segment_time_graph.m
blob: f88c836820ea08baabd063826278f06cc78e4686 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function [] = segment_time_graph(seg_time,track)
%SEGMENT_TIME_GRAPH Snittid för varje segment.

avr_seg_time = mean(seg_time);
subplot(20,1,13:20);

Plot = bar(avr_seg_time);
%Plot.Marker = 'o';
Plot.FaceColor = 'k';
xlabel('Segment');
ylabel('Tid [s]');
Tit = join(['Medeltid/segment bana',string(track)]);
title(Tit); 
end