Finding the required number of high frequency values from histogram

조회 수: 2 (최근 30일)
I have a 60032x1 matrix. With the data I have, I made a histogram. I want the three most repeating values from it. I want the bin centres so that i can plot another graph with it.
Can someone help me with this? Thanks in advance :)

채택된 답변

Chunru
Chunru 2021년 9월 23일
a = [randn(10000,1)-5; randn(10000,1); randn(10000,1)+5];
histogram(a)
[y,edges] = histcounts(a);
% Use the center of edges as x-axis
x = (edges(1:end-1) + edges(2:end))/2; % bin centre
figure
plot(x, y)
[pks,locs] = findpeaks(y, x)
pks = 1×3
1929 1951 1909
locs = 1×3
-5.2500 0.2500 5.2500
hold on
plot(locs, pks, '*')
  댓글 수: 1
pratapaneni Chetan
pratapaneni Chetan 2021년 9월 23일
편집: pratapaneni Chetan 2021년 9월 23일
Thank you for helping me out but when I meant i want to plot another graph, I meant that i want to plot the graph of some other matrix vs the peak's corresponding locs. How can this be done?
Note: the other matrix's dimension is 60032x1

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scopes and Data Logging에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by