필터 지우기
필터 지우기

Binning data into 1000 bins between values

조회 수: 4 (최근 30일)
Tim Fulcher
Tim Fulcher 2021년 9월 21일
댓글: Steven Lord 2021년 9월 21일
Hi all,
I have 75,000 values and I'd like to bin them into 1000 bins between 0.985 and 1.030. Is this possible and if so how?
Regards
Tim

답변 (1개)

Image Analyst
Image Analyst 2021년 9월 21일
Description
Y = discretize(X,edges) returns the indices of the bins that contain the elements of X. The jth bin contains element X(i) if edges(j) <= X(i) < edges(j+1) for 1 <= j < N, where N is the number of bins and length(edges) = N+1. The last bin contains both edges such that edges(N) <= X(i) <= edges(N+1).
[Y,E] = discretize(X,N) divides the data in X into N bins of uniform width, and also returns the bin edges E.
[Y,E] = discretize(X,dur), where X is a datetime or duration array, divides X into uniform bins of dur length of time. dur can be a scalar duration or calendarDuration, or a unit of time. For example, [Y,E] = discretize(X,'hour') divides X into bins with a uniform duration of 1 hour.
[___] = discretize(___,values) returns the corresponding element in values rather than the bin number, using any of the previous input or output argument combinations. For example, if X(1) is in bin 5, then Y(1) is values(5) rather than 5. values must be a vector with length equal to the number of bins.
  댓글 수: 2
Tim Fulcher
Tim Fulcher 2021년 9월 21일
Hi Image Analyst,
thanks for replying. I'll try this and get back to you.
Regards
Tim
Steven Lord
Steven Lord 2021년 9월 21일
If you also want the counts of how many elements fall into each bin I'd use histcounts with three outputs.

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

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by