How do I show only two colors in my Legend?

조회 수: 14 (최근 30일)
Heather Spain
Heather Spain 2020년 5월 26일
댓글: KALYAN ACHARJYA 2020년 5월 26일
I only want to label in my legend the moon and the earth, so how do I get rid of the rest of the colours? Is it possible to only show the earth (yellow) and the Moon (green) in the legend?
  댓글 수: 1
KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 5월 26일
data1=plot(earth_data);
plot others..
data2=plot(moon_data);
legend([data1,data2],'Earth','Moon');

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

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 5월 26일
You can use the handle returned by plot() with legend() to only show specific legends. For example
hold on;
p(1) = plot(rand(1,10));
p(2) = plot(rand(1,10));
p(3) = plot(rand(1,10));
p(4) = plot(rand(1,10));
p(5) = plot(rand(1,10));
legend(p([3 5]), {'legend3', 'legend5'});

카테고리

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