count matrix elements in defined intervals by histogram
1 回表示 (過去 30 日間)
古いコメントを表示
In the attached matrix, I want to extract the ratios of matrix elements at defined intervals. In order to do that, I have written the code below, but I want to know is it possible to do that with a histogram function or any other built-in Matlab function?
cnt0 = 0;
cnt1 = 0;
cnt2 = 0;
cnt3 = 0;
cnt4 = 0;
cnt5 = 0;
for i = 1:numel(A)
if A(i) == 0
cnt0 = cnt0 + 1;
elseif A(i) > 0 && A(i) < 0.25
cnt1 = cnt1 + 1;
elseif A(i) >= 0.25 && A(i) < 0.5
cnt2 = cnt2 + 1;
elseif A(i) >= 0.5 && A(i) < 0.75
cnt3 = cnt3 + 1;
elseif A(i) >= 0.75 && A(i) < 1
cnt4 = cnt4 + 1;
elseif A(i) == 1
cnt5 = cnt5 + 1;
end
end
ratio = [cnt0/numel(A), cnt1/numel(A), cnt2/numel(A), cnt3/numel(A), cnt4/numel(A), cnt5/numel(A)]';
0 件のコメント
回答 (1 件)
Steven Lord
2021 年 7 月 26 日
Use the histogram function (if you want to see the plot) or the histcounts function (if you just want the bin counts.) The 'Normalization' option for either function will also be of interest to you.
1 件のコメント
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!