Colour intensity of images
5 ビュー (過去 30 日間)
表示 古いコメント
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
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);
0 件のコメント
muhammad ahmad
2019 年 3 月 2 日
1 件のコメント
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.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!