Colour intensity of images
    3 views (last 30 days)
  
       Show older comments
    
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 Comments
  Image Analyst
      
      
 on 2 Mar 2019
				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?
Answers (2)
  Image Analyst
      
      
 on 2 Mar 2019
        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);
0 Comments
  muhammad ahmad
 on 2 Mar 2019
        1 Comment
  Image Analyst
      
      
 on 2 Mar 2019
				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.
See Also
Categories
				Find more on Introduction to Installation and Licensing in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
