New line in legend does not work anymore in MATLAB 2017b

59 Ansichten (letzte 30 Tage)
Chris
Chris am 13 Dez. 2018
Bearbeitet: dpb am 20 Dez. 2018
Hi,
I want to make a multi line legend with MATLAB 2017b:
plot([1:100;1:5:500]');
legend({['test 1' char(10) 'done'],['test 2' char(10) 'done']});
This results in:
Problem_2017b.png
In previous versions of MATLAB this reulted in:
Problem_2017b_before.png
which is what I want.
  17 Kommentare
dpb
dpb am 18 Dez. 2018
OP could check that hypothesis fairly quickly...doesn't indicate whether has tried from a clean slate minimal test or not...I was presuming that would also fail on his system, but guess it's possible it wouldn't.
Then would be a treat to try to figure out which specific setting may have done the dirty...
Chris
Chris am 18 Dez. 2018
I reinstalled matlab which solved the problem....
Thanks everyone for their help!

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Yair Altman
Yair Altman am 18 Dez. 2018
The reason for the problem is that the default legend Interpreter ('lex') does not know how to interpret the '\n' in the label. \ prefixes are reserved in lex for special commands, but \n is not one of them (reference). Instead, you should use the char(10) or run your string through sprintf():
legend({'test 1\ndone', 'test 2\ndone'}) % not good
legend({sprintf('test 1\ndone'), sprintf('test 2\ndone')}) % good
legend({['test 1' 10 'done'], ['test 2' 10 'done']}) % also good
  4 Kommentare
Jan
Jan am 18 Dez. 2018
It works for me also under all Matlab releases I've tested: R6.5, R2009a, R2015a, R2016b. But for the OP it failed in 2017b and in another thread (link) R2017a was concerned. Re-installing 2017b solved (link) the problem for the OP. So I'm afraid we will not find the problem ever.
dpb
dpb am 19 Dez. 2018
Bearbeitet: dpb am 20 Dez. 2018
That the char(10) passed to legend was displayed in the error message as \n is, I think, most interesting...was there really a character substitution done in the passed-in string or is it just a fignewton of the error string handling formatting the byte to the string???
As in your tests, all expected-to-work perturbations worked here w/ R2014b, 16b, 17b, 18b
Since a re-install made OP's symptoms disappear, could possibly be related to a behind-the-scenes OS update...but you're right, we'll almost certainly never know for sure.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Graphics Performance finden Sie in Help Center und File Exchange

Produkte


Version

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by