How can I create bins in Matlab using predefined counts?

1 回表示 (過去 30 日間)
Neha Binish
Neha Binish 2020 年 11 月 22 日
コメント済み: Neha Binish 2020 年 11 月 23 日
I have a set of intervals and the count of the data that lie in that interval like it is given below -
INTERVALS COUNT
2 < T < 4 20
4 < T < 6 5
6 < T < 8 13
Is it possible to save this data as a bin on MATLAB?
I have tried using discretize() and histcounts() but it only allows me to specify the edges and not the bin count.

採用された回答

Steven Lord
Steven Lord 2020 年 11 月 23 日
histogram('BinEdges', [2, 4, 6, 8], 'BinCounts', [20, 5, 13]);

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by