How to differentiate range color on frequency counts plot

1 回表示 (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2020 年 3 月 27 日
回答済み: MathWorks Support Team 2020 年 3 月 27 日
I would like to use a different color only for a certain range color especially around the median range of frequency counts.

採用された回答

MathWorks Support Team
MathWorks Support Team 2020 年 3 月 27 日
Here is an example code to change the color to red for a certain range around the median of frequency counts.
x = [ 1 3.3 7 10 20 25 25 25 30 30 30 30 30 30 32 32 32 40 50 60];
mask = (22 < x) & (x < 33);
bin_edges = 1:1:60;
figure
histogram(x(~mask),bin_edges);
hold on
histogram(x(mask),bin_edges,'FaceColor','red');
hold off

その他の回答 (0 件)

カテゴリ

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

タグ

タグが未入力です。

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by