arrayfun doesn't work with rmoutliers

조회 수: 1 (최근 30일)
Tom K.
Tom K. 2022년 1월 5일
편집: Tom K. 2022년 1월 5일
Goal
Remove outliers along dimension d of a 3D matrix using arrayfun and rmoutliers (or superior alternatives).
Minimal Working Example
Take the following matrix:
A = [0 2 0 0 0; 0 0 0 4 0; 3 0 0 3 0];
A(:,:,2) = A
A =
A(:,:,1) = 0 2 0 0 0 0 0 0 4 0 3 0 0 3 0 A(:,:,2) = 0 2 0 0 0 0 0 0 4 0 3 0 0 3 0
Since each 1D array along dimension d will have a different number of outliers, the output of arrayfun will have to be a cell array (by specifying "UniformOutput" = false). Calling rmoutliers through arrayfun returns the original matrix with the outliers (undesired behaviour):
arrayfun(@rmoutliers,A,"UniformOutput",false)
ans = 3×5×2 cell array
ans(:,:,1) = {[0]} {[2]} {[0]} {[0]} {[0]} {[0]} {[0]} {[0]} {[4]} {[0]} {[3]} {[0]} {[0]} {[3]} {[0]} ans(:,:,2) = {[0]} {[2]} {[0]} {[0]} {[0]} {[0]} {[0]} {[0]} {[4]} {[0]} {[3]} {[0]} {[0]} {[3]} {[0]}
The function works as expected when called on each row by itself:
rmoutliers(A(1,:,1)) % removes the 2
ans = 1×4
0 0 0 0
rmoutliers(A(3,:,1)) % removes both 3's
ans = 1×3
0 0 0
Hopefully I'm missing something trivial.

채택된 답변

Voss
Voss 2022년 1월 5일
A = [0 2 0 0 0; 0 0 0 4 0; 3 0 0 3 0];
A(:,:,2) = A
A =
A(:,:,1) = 0 2 0 0 0 0 0 0 4 0 3 0 0 3 0 A(:,:,2) = 0 2 0 0 0 0 0 0 4 0 3 0 0 3 0
C = num2cell(A,2)
C = 3×1×2 cell array
C(:,:,1) = {[0 2 0 0 0]} {[0 0 0 4 0]} {[3 0 0 3 0]} C(:,:,2) = {[0 2 0 0 0]} {[0 0 0 4 0]} {[3 0 0 3 0]}
cellfun(@rmoutliers,C,"UniformOutput",false)
ans = 3×1×2 cell array
ans(:,:,1) = {[0 0 0 0]} {[0 0 0 0]} {[ 0 0 0]} ans(:,:,2) = {[0 0 0 0]} {[0 0 0 0]} {[ 0 0 0]}

추가 답변 (1개)

Mike Croucher
Mike Croucher 2022년 1월 5일
arrayfun operates on every element of the array. So
arrayfun(@rmoutliers,A,"UniformOutput",false)
is like doing
rmoutliers(0)
rmoutliers(0)
rmoutliers(3)
etc
  댓글 수: 1
Tom K.
Tom K. 2022년 1월 5일
편집: Tom K. 2022년 1월 5일
Hi Mike,
I was able to produce the desired results using @Benjamin's solution.
Thanks!

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

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by