ndhistc

버전 1.0.0.0 (14.3 KB) 작성자: Kangwon Lee
Multi dimensional histogram
다운로드 수: 3.5K
업데이트 날짜: 2004/1/16

라이선스 없음

function qHistogram = ndHistc (mData, vEdge1, vEdge2, ... )

* Input Arguments:

+ mData: nRecord by nDim 2-dimensional array of doubles
+ vEdge1, vEdge2, ... : nDim vectors of histogram edges

* Return value:

+ qHistogram: nDim-dimensional data cube
containing number of points in each cell
defined by histogram edges. For instance,
qHistogram(1,1,1,...) means number of data points
satisfying
vEdge1(1) <= mData(:,1) < vEdge1(2) & ...
vEdge2(1) <= mData(:,2) < vEdge2(2) & ...
vEdge3(1) <= mData(:,3) < vEdge3(1) & ...
...
* Example
mRand = rand(1e6,5);
ve1 = linspace(0,1,5);
ve2 = linspace(0,1,6);
ve3 = linspace(0,1,7);
ve4 = linspace(0,1,8);
ve5 = linspace(0,1,9);
qHist = ndhistc(mRand, ve1, ve2, ve3, ve4, ve5);

* Comparison with ndhist.m (compiled using mcc -x ndhist)
+ 1e6 by 2 data -> 5 by 6
ndhist.m 79.49 sec
ndhistc.c 0.4610 sec

+ 1e6 by 5 data -> 5 by 6 by 7 by 8 by 9
ndhist.m 199.32 sec
ndhistc.c 2.4430 sec

==> More efficient if More data points (==rows) & Less dimensions (==columns)

인용 양식

Kangwon Lee (2024). ndhistc (https://www.mathworks.com/matlabcentral/fileexchange/3957-ndhistc), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R12.1
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Data Distribution Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Help corrected