how do i get the color gray

2,732 ビュー (過去 30 日間)
lowcalorie
lowcalorie 2012 年 5 月 23 日
コメント済み: Steven Lord 2024 年 1 月 23 日
how do i get the color gray on my graph

採用された回答

Hans Scharler
Hans Scharler 2022 年 5 月 13 日
編集済み: Hans Scharler 2024 年 1 月 23 日
As others have pointed out, gray is the result of the Red, Green, and Blue values being equal somewhere between 0 and 1 where black is [0 0 0] and white is [1 1 1].
x = rand(200,4);
y = rand(200,4);
grayColor = [.7 .7 .7];
plot(x, y, 'Color', grayColor)
If you are you used to 255 color values from HTML for example, you can divide by 255 to get a value between 0 and 1. Classic HTML gray is [128, 128, 128].
x = rand(200,4);
y = rand(200,4);
htmlGray = [128 128 128]/255;
plot(x, y, 'Color', htmlGray)
  1 件のコメント
Steven Lord
Steven Lord 2024 年 1 月 23 日
And if you want to select a particular color interactively then hard-code that color value into your app, open the uisetcolor dialog box. Select the shade that matches what you want from the dialog then close the dialog. The color value will be displayed in the Command Window, ready for you to copy and paste into the app.

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2012 年 5 月 23 日
Gray is any RGB color with Red, Green, and Blue components all equal, excepting black (all 0's) and white (all components the maximum).
For example,
plot(x, y, 'Color', [17 17 17])
  4 件のコメント
Zhe Chen
Zhe Chen 2020 年 7 月 28 日
must be in the range (0 1)
Walter Roberson
Walter Roberson 2020 年 7 月 28 日
Which MATLAB release are you using?
plot(rand(1,5), 'Color', uint8([17 17 17]))
hold on
plot(rand(1,5), 'Color', [17 17 17]/255)
hold off
works for me.
Note that there are some plot attributes that only accept floating point, such as most Alpha values. In that case you would need the /255 form.

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

カテゴリ

Help Center および File ExchangeRed についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by