Counting number of 1's in different bins
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi
I have again a question regarding bins:
Again an array A:
A = [100 150 190 200 250 300 350 370 390 400 400]
and a second array B which saves if a stimuli with the intensity as defined in A was recognized by a subject or not:
B = [ 0 1 0 0 1 1 1 0 1 0 1]
edges = linspace(min(A),max(A),4);
First I bin A in the bins [100,200), [200,300) and [300,400] as follows:
temp = histc(A, edges);
counts = temp(1:end-1);
counts(end) = counts(end)+ temp(end);
Now I want to know for each bin, how many 1's it contains (as stored in B). How do I do that? I started to code with a for loop but the code became quite complicated, so maybe my approach was wrong to start with..
댓글 수: 2
Adam
2015년 5월 8일
If possible can you post the exact definition of stim_durations and edges for that code?
It is a lot easier to try to help if I (or anyone) can just quickly put your code on our own command line or script without having to interpret it and work out what is supposed to be in a variable.
histc does come with a second output argument:
[bincounts,ind]= histc(___)
ind, being the index of the bin into which each element was placed. Using that to apply to your 'B' array above should quickly yield the answer you need.
As an aside though the Matlab documentation recommends to use histcounts instesad of histc though I don't know which matlab version you are running or which version histcounts was introduced as the recommended alternative.
답변 (3개)
Michael Haderlein
2015년 5월 8일
편집: Michael Haderlein
2015년 5월 8일
histc can have two output parameters:
[temp,ind] = histc(A,[100,200,300,400]);
Use the second one as input parameter for accumarray:
>> accumarray(ind',B',[],@sum)
ans =
1
1
3
1
댓글 수: 0
Andrei Bobrov
2015년 5월 8일
A = [100 150 190 200 250 300 350 370 390 400 400];
B = [ 0 1 0 0 1 1 1 0 1 0 1];
[~,ii] = histc(A,[100 200 300 inf]);
out = accumarray(ii(:),B(:));
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!