필터 지우기
필터 지우기

change display name of a data

조회 수: 17 (최근 30일)
Brasco , D.
Brasco , D. 2014년 6월 9일
답변: José-Luis 2014년 6월 9일
I am new begginer in Matlab and i have a problem with naming the data on graphs.
Let say i have 5 variables to plot and call teh " A, B, C, D, E "
i plot them on a figure and name them using legend command
legend ('A','B','C','D','E')
i want to change the fourth variable name. Let say i want it to display as "Fourth Variable"
how can i do this ??
Thanks for helping

답변 (1개)

José-Luis
José-Luis 2014년 6월 9일
You could modify only the text, but that is bound to wreak havok on the display:
plot(rand(10,5));
l_str = {'A','B','C','D','E'};
lH = legend(l_str);
pos_to_change = 4;
allH = get(lH,'children');
set(allH(numel(allH) - ( (pos_to_change - 1) * 3 ) ),'String','yourText');
It would probably be easier to update the entire legend:
new_str = l_str;
new_str(4) = {'yourText'};
legend(new_str);

카테고리

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