필터 지우기
필터 지우기

subtract from each element its mean / find absolute deviation across rows

조회 수: 1 (최근 30일)
A = [1 2 NaN; 4 NaN 6; 7 8 9]
A =
1 2 NaN
4 NaN 6
7 8 9
mn = nanmean(A,2)
mn =
1.5000
5.0000
8.0000
I would like to subtract each element by its corresponding row average as shown below(i.e find absolute deviations from mean),
1-1.5 2-1.5 NaN
4-5 NaN 6-5
7-8 8-8 9-8
Note the below array has no negative values as I am trying to find modulus of deviations.
0.5 0.5 NaN
1 NaN 1
1 0 1
Then sum up each row and divide by no. of elements.
(-0.5+0.5)/2
(-1 + 1)/2
(-1 + 0 + 1)/3
How can I achieve this result vector using arrayfun or by any other method ?
I am trying to find teh absolute deviation of each element in the array. i.e std.dev without the sq

채택된 답변

Walter Roberson
Walter Roberson 2013년 1월 17일
nanmean(abs(bsxfun(@minus A, nm)),2)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Language Fundamentals에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by