Adding a legend to a Graph in Matlab

조회 수: 18 (최근 30일)
Arham Mini
Arham Mini 2021년 11월 10일
답변: Bjorn Gustavsson 2021년 11월 10일
I'd like to add a legend in my Graph without dividing it in several graphs (which is the suggestion made in Legend in a Graph - MATLAB Answers - MATLAB Central (mathworks.com)).
My graph is this one:
I've generated it using plot() and highlight() (for different shapes and colours of nodes of interest). I'd like to generate a legend with the different shapes and colors, because they represent different groups of people but they are part of the same graph. I tried using text() but it's not what I'm looking for as I can't generate a legend with the symbols and colors.

답변 (1개)

Bjorn Gustavsson
Bjorn Gustavsson 2021년 11월 10일
Would something like:
legend([h(idx1(1)),h(idx1(2)),h(idx3(1))],...
'label1','label2','label3')
work for this case. Here I have set the output from your call to plot to h and the three (?) different highlights to be done with something like this:
highlight(h,idx1,etc..)
highlight(h,idx2,etc..)
highlight(h,idx3,etc..)
HTH

카테고리

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

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by