What is the procedure to find the Histogram coefficients?

조회 수: 2 (최근 30일)
pavan kumar
pavan kumar 2021년 8월 6일
답변: pavan kumar 2021년 8월 6일
What is the procedure to find the Histogram coefficients?

채택된 답변

Megan Jurczak
Megan Jurczak 2021년 8월 6일
Not sure exactly what you mean...You can use hist() if I am understanding the question correctly.
As an example, if you had a matrix A as follows:
A = [ 1 1 1 3 4 5 7];
In order to find the number of times that each unique value appears you would use hist() as follows:
[N,X] = hist(A, unique(A))
N = 3 1 1 1 1
X = 1 3 4 5 7
Where N is what I assume you refered to as the coefficient (# of times each value appears), and X is the value from A associated with that count.

추가 답변 (1개)

pavan kumar
pavan kumar 2021년 8월 6일
what variance /meansquare will give ?

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by