unshow unnecessary intervalls in a histogramm

3 ビュー (過去 30 日間)
Fedi Chaarana
Fedi Chaarana 2021 年 7 月 22 日
回答済み: Steven Lord 2021 年 7 月 22 日
Hallo
I have a histogramm where i want to show only the values for certain intervalls.
the other intervalls i dont need and i dont want them to be shown.
thanks for any tip

採用された回答

Steven Lord
Steven Lord 2021 年 7 月 22 日
x = randn(1, 1e5);
h = histogram(x);
C = h.BinCounts;
E = h.BinEdges;
C([30:40 50 60]) = 0;
figure
histogram('BinCounts', C, 'BinEdges', E)
If you don't want to plot both histograms you could use histcounts to compute C and E instead of calling histogram.

その他の回答 (1 件)

Constantino Carlos Reyes-Aldasoro
Constantino Carlos Reyes-Aldasoro 2021 年 7 月 22 日
Hello:
What you need to do is rather simple if you capture the values of your histogram, instead of using hist to display directly, For example take the data to be 500 Gaussian randomly distributed points. Take the histogram and save the values in x,y and then display:
data= randn(500,1);
[y,x]=hist(data,[-4:0.2:4]);
bar(x,y)
This is the equivalent of what you currently have, now you want to discard some of the bins produced, first let's see the size of x (and y would be the same):
numBins = numel(x)
numBins = 41
So we know that it has 41 values, now, create a vector with those values that you want to keep and remove those you do not want, say you want to remove 11,21,22,23,24:
selected_bins=[1:10 12:20 25:numBins];
bar(x(selected_bins),y(selected_bins))
And that's it, you have a histogram with only the values you had selected.
Hope this solves your question. If yes, please accept the answer, if not, let me know.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by