How to avoid unwanted line break in figure title?
55 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Martin Laurenzis
am 25 Jan. 2021
Bearbeitet: Atikul Haque
am 4 Jul. 2023
H all,
I am plotting data for diffenet parameter, where the different parameter are given as string arrays.
nameSources = ["source1", "source2"];
valParameter = ["value1", "value2"];
Each time I write the title, an unwanted line break is introduced.
figure(1)
t = [nameSources(1) ' ' valParameter(1) '%'];
title(t)
Can anybody help?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 25 Jan. 2021
t = [nameSources{1} ' ' valParameter{1} '%'];
or
t = nameSources(1) + ' ' + valParameter(1) + '%';
5 Kommentare
Atikul Haque
am 4 Jul. 2023
Bearbeitet: Atikul Haque
am 4 Jul. 2023
Thank you @Walter Roberson, it has worked for me lastly. But didn't need those extra quote marks outside the 3rd bracket.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Title finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!