count matrix elements in defined intervals by histogram
显示 更早的评论
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)]';
回答(1 个)
Steven Lord
2021-7-26
1 个投票
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 个评论
ali eskandari
2021-7-26
编辑:ali eskandari
2021-7-26
类别
在 帮助中心 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!