필터 지우기
필터 지우기

Colour intensity of images

조회 수: 1 (최근 30일)
muhammad ahmad
muhammad ahmad 2019년 3월 2일
댓글: Image Analyst 2019년 3월 2일
I have following graph.
I want to adjust colour settings as random line has low intensity of same colour as the averaged line. How can I code it?
  댓글 수: 2
Image Analyst
Image Analyst 2019년 3월 2일
I do not understand the question. Please explain better. What is "Reward per Episode" and "Number of Episodes"?
What does the averaged line and noisy signal represent?
Color settings of WHAT? Same color as WHAT?
muhammad ahmad
muhammad ahmad 2019년 3월 2일
Well I have data of accumulated reward for 2300 episodes that is random while red line is averaged data plotted angaist random data what i want i want to plot both in same colur but with different intensity

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

답변 (2개)

Image Analyst
Image Analyst 2019년 3월 2일
Try this:
brightBlue = [0,0,1]; % High intensity
darkBlue = brightBlue / 2; % Low intensity is half as bright.
plot(x, y, 'Color', brightBlue);
hold on;
plot(x, smoothed_y, 'Color', darkBlue, 'LineWidth', 2);

muhammad ahmad
muhammad ahmad 2019년 3월 2일
I am using plot([x,y]) command how to adjust colour in this command
  댓글 수: 1
Image Analyst
Image Analyst 2019년 3월 2일
This is not an answer.
I did give an answer though in my Answer just above. Is there anything wrong with it? If so, say what is wrong with it.

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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by