summaryrefslogtreecommitdiffstats
path: root/Kod/bilbana/Graph/segment_time_graph.m
diff options
context:
space:
mode:
authorAlbin <albwa833@student.liu.se>2019-10-25 09:22:21 +0200
committerAlbin <albwa833@student.liu.se>2019-10-25 09:22:21 +0200
commitb7771e858cb8bb753521792d828d7a5f47d175cd (patch)
tree078e800874fc658971b691b23d9e5abe33ef602d /Kod/bilbana/Graph/segment_time_graph.m
parentbaa8c3c3ee9b98ef5ce258aacc316fcdf54c1c76 (diff)
downloadtfyy51-b7771e858cb8bb753521792d828d7a5f47d175cd.tar.gz
Bytte ut string() mot char() för att funka med nyare matlabversioner
Diffstat (limited to 'Kod/bilbana/Graph/segment_time_graph.m')
-rw-r--r--Kod/bilbana/Graph/segment_time_graph.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kod/bilbana/Graph/segment_time_graph.m b/Kod/bilbana/Graph/segment_time_graph.m
index 5ae0690..9ee4b8c 100644
--- a/Kod/bilbana/Graph/segment_time_graph.m
+++ b/Kod/bilbana/Graph/segment_time_graph.m
@@ -34,7 +34,7 @@ Plot = bar(avr_seg_time);
Plot.FaceColor = 'k';
xlabel('Segment');
ylabel('Tid [s]');
-tit = join(['Medeltid/segment bana',string(track)]);
+tit = char(['Medeltid/segment bana',char(track)]);
title(tit);
end