![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/198955/image.jpeg)
New line in legend does not work anymore in MATLAB 2017b
94 次查看(过去 30 天)
显示 更早的评论
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](https://www.mathworks.com/matlabcentral/answers/uploaded_files/198940/Problem_2017b.png)
In previous versions of MATLAB this reulted in:
![Problem_2017b_before.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/198941/Problem_2017b_before.png)
which is what I want.
17 个评论
dpb
2018-12-18
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...
回答(1 个)
Yair Altman
2018-12-18
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 个评论
Jan
2018-12-18
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
2018-12-19
编辑:dpb
2018-12-20
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!