matrix manipulation,want to find mean value?

1 view (last 30 days)
having matrix W. its size is 7x50. totally 350 elements. in this column'1' have to find mean value of 4 elements then subtracts this value with remaining mean value of 3 elements. want to get this mean value up to 50 columns.how to implement this?

Accepted Answer

nanren888
nanren888 on 23 Feb 2013
"subtracts this with" ? .
Try something like
.
homeworkVec = mean(W(1:4,:),1)-mean(W(5:7,1),1);
In mean(x,1), the "1" is default. I just put it in to be explicit.
homeworkVec = mean(W(1:4,:))-mean(W(5:7,1));

More Answers (0)

Categories

Find more on MATLAB Coder in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!