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. ..."

请先登录,再进行评论。

回答(1 个)

Yuvaraj Venkataswamy
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