필터 지우기
필터 지우기

How do I give the legends for two different values, those individually are calculated multiple times?

조회 수: 1 (최근 30일)
I have percentage value graph of two values dependent on the laser angle. These two values are calculated multiple times. I tried to give the legends by the command legend('per Tape irradiated','per substrate irradiated'), but then both the legends are given with the same color. I want to have the corresponding legends according to the percentage of Tape and Substrate irradiated. Percentage Tape irradiated should be blue and percentage of substrate irradiated should be blue.
  댓글 수: 3
dpb
dpb 2018년 5월 10일
Well, I'll guess... :) You're calculating the red set of results first, then the blue and then only pass two label strings to legend; hence you label the first two lines which are both red. You need to save the line handles to at least the first red and first blue calculation and then use those handles to associate the labels to the appropriate handle with the alternate legend syntax
"legend(subset,__ ) only includes items in the legend for the data series listed in subset. Specify subset as a vector of graphics objects. ..."
Avi
Avi 2018년 5월 10일
@dpd you guessed it right. My problem is solved. thanks alot. your solution worked.

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

답변 (1개)

Yuvaraj Venkataswamy
Yuvaraj Venkataswamy 2018년 5월 10일
if true
legend('Percentage Tape Irradiated', 'Percentage Substrate Irradiated') ;
end

카테고리

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