red-green colour blind

I am asked to replace red, green, blue curves in the plot to red-green colour blind.
Can someone please tell me how to get that code for color blind??
For example red is [1 0 0], green is [0 1 0], then color blind is [? ? ?]

3 件のコメント

KSSV
KSSV 2019 年 5 月 7 日
Megha
Megha 2019 年 5 月 7 日
Thank you KSSV, I can see entire colorbar for normal vision and color blind vision.
Can you please suggest what i should use in plot command i.e.
plot(x1,y1,'r'); hold on;
plot(x1,y2,'g'); hold on;
plot(x1,y3,'b'); hold on;
for my three different plots?
Adam Danz
Adam Danz 2019 年 5 月 7 日
編集済み: Adam Danz 2019 年 5 月 7 日
If you are avoiding colors that a red-green color deficient person has trouble seeing, use any of the colors in the "deuteranopia" column in the link shared by KSSV.
If you prefer to set the colors manually, go to this online color picker, choose a color, and copy the RGB values on the left. Divide those numbers by 255 to convert them to normalized values for matlab.
so rgb(255, 237, 40) becomes [255,237,40]./255 = [1, .929, .157]
You got this!

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeModify Image Colors についてさらに検索

質問済み:

2019 年 5 月 7 日

編集済み:

2019 年 5 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by