extract numbers form a column

조회 수: 7 (최근 30일)
ShonyE
ShonyE 2021년 1월 17일
댓글: dpb 2021년 1월 18일
I have a double collumn set of data, something like that:
Q= [0 15
0 18
0 12
1 12
2 15
0 17
0 12
2 7
0 12
0 11]
I need to get the mean values of ech array in column 2, where are zeros in column 1. Or at lest extract those aarays onto different variables, they need to be separated. Can anybody help me please?
Thank you
  댓글 수: 3
ShonyE
ShonyE 2021년 1월 17일
Thanks, but here I'll have the mean value of all numbers except those where first collunm is non zero. But I need them to be separated. The none zero values in column one, are not just need to be trown away, but also act as separators for new variables. Each 0 section in column 1 should yiel a variable in column 2.
dpb
dpb 2021년 1월 17일
See below...

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

채택된 답변

dpb
dpb 2021년 1월 17일
편집: dpb 2021년 1월 17일
v=sprintf('%d',double([nan;Q(:,1);nan].'==0));
iStrt=strfind(v,'01').';
iEnd=[strfind(v,'10')-1].';
grpsums=arrayfun(@(i1,i2)sum(Q(i1:i2,2)),iStrt,iEnd).';
This is same idea except uses the string form to find the transitions from '01' or '10' in the vector. It first converts the numeric values to logical of T|F on zero to make the comparison an exact transition.
If use the arrayfun solution, remember that the anonymous function encapsulates the data of any variables not passed as arguments in the function and that those are NOT updated if the variable changes. Hence, if Q changes, executing the function above with just a new set of start,stop indices would still be summing over those positions in the old Q. Of course, when the whole line is executed, the anonymous function is redefined with the Q at the time; the above really only "bites" if you define the anonymous function as a function handle and then reuse that handle.
As noted, still seems to me ought to be an easy way to build a group subs index by section and then use accumarray directly, but how to increment the groups more efficiently than again using the above indices just never came to me...
  댓글 수: 6
ShonyE
ShonyE 2021년 1월 18일
편집: ShonyE 2021년 1월 18일
great, thanks. It works! The only thing I've changed, is the "sum" operator to "mean" in the last row. Also, by duplicating it with "std" operator, I'm calculating the standart deviation of those mean values.
Thank a lot again!
dpb
dpb 2021년 1월 18일
Oh, yeah, I dunno how I got 'sum'; I do see it was mean that was requested.
If you want multiple statistics, you can optimize a little by writing a function that returns multiple outputs instead of using the anonymous function with the cost of having to write the function itself.
Alternatively, if you have the Statistics TB, you could use the grpstats function with a nul set ("[]") for the grouping variable and the list of desired statistics wanted; TMW has written the function in the additional toolbox.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by