Why can't I add title to plot in R2013a?

조회 수: 4 (최근 30일)
Mohammed
Mohammed 2016년 10월 12일
댓글: Mohammed 2016년 10월 13일
I haven't used MATLAB in a while but last time I tried, I didn't have any issues with plotting function. Now when I am plotting and adding a title to the legend, apparently as shown below, It won't show up! Any suggestions toward fixing this issue would be greatly appreciated?!
clear, clc, clf, cla reset, format shortg,
g_compress = CompressExtract('CompressExtract.csv',2,1000);
g_table = g_compress(:,[1,12]);
g_Bins = g_table(:,1);
g_RSCP = g_table(:,2);
plot(g_Bins,g_RSCP,'-','Color',[0.5, 0, 0], ...
'LineWidth',1,'LineSmoothing','on')
lgd = legend('Example','Location','S');
title(lgd,'My Legend Title')
axis([0 1000 -100 -40]), grid on
  댓글 수: 2
Preethi
Preethi 2016년 10월 13일
hi,
do you want to title the plot or legend?
Mohammed
Mohammed 2016년 10월 13일
I want to title the legend please?! Just like shown below

댓글을 달려면 로그인하십시오.

채택된 답변

Ganesh Hegade
Ganesh Hegade 2016년 10월 13일
편집: Walter Roberson 2016년 10월 13일
Hi,
Normally for title
title(str)
title(str,Name,Value)
title(ax,___)
but the value of
lgd = legend('Example','Location','S');
is not a string or axis details.
I think you should just use 'legend(your specifications)' to locate the legend details on the graph and then add the title name.
Thanks.
  댓글 수: 2
Walter Roberson
Walter Roberson 2016년 10월 13일
편집: Walter Roberson 2016년 10월 13일
In R2014a and before, legend() returned an axes handle, and you were able to title() against that handle.
In R2014b and newer, it turns out that you can set a Title property:
lgd.Title.String = 'My Legend Title';
In R2014a and before, there is the question of whether the default position is within the portion being displayed, and similar concerns. The way legends were constructed in R2014a and before was not expecting a title to be added.
Mohammed
Mohammed 2016년 10월 13일
Thanks to both of you for your explanation. Here is what I improved;
clear, clc, clf, cla reset, format shortg,
g_compress = CompressExtract('CompressExtract.csv',2,1000);
g_table = g_compress(:,[1,12]);
g_Bins = g_table(:,1);
g_RSCP = g_table(:,2);
plot(g_Bins,g_RSCP,'-','Color',[0.5, 0, 0], ...
'LineWidth',1,'LineSmoothing','on')
lgd = legend('Example','Location','S');
lgd_title = get(gca,'title');
set(lgd_title, 'string', 'LegendTitle','FontWeight', 'Bold')
title(lgd,'My Legend Title')
axis([0 1000 -100 -40])
Here is how it looks like, my question to you both, how do I turn the box on around the legend title?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Title에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by