Correct Sprintf use on legend

15 次查看(过去 30 天)
Hi, I'm plotting 3 things. I want to make a box legend inside the plot but cant find the right way to do it, I want the third legend say:
CI = Ddata(1) +- 10%
The code is the next:
rango=10
legend('Original Data','CI=Ddata(1)',sprintf('CI = Ddata(1) \pm %.1e',rango),4);
It doesnt create the legend and give this on the Command Window:
Warning: Invalid escape sequence appears in format string. See help
sprintf for valid escape sequences.
Any help is appreciated.

采纳的回答

Matt Fig
Matt Fig 2012-9-20
编辑:Matt Fig 2012-9-20
Use:
\\pm % The first \ escapes the use of the escape \.
instead of:
\pm
  1 个评论
Jose
Jose 2012-9-29
Thanks, I focused on other parts of my code and forget about this.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by