remove zeros from a 15x300 matrix and find the median

1 view (last 30 days)
when I run the code below I get 15x301 matrix AS_V with some receding zeroes
for i=1:15
load(['output/NeNMF_V_', int2str(i), '.mat'], 'AS' );
AS_V(i,:)= AS;
end
I would like to remove these zeros and take take the median of each row so that, I will now have 15x1 matrix

Answers (1)

Rik
Rik on 11 Feb 2020
You can use this inside your loop.
AS_V(i)= median(AS(AS~=0));
  3 Comments
Rik
Rik on 11 Feb 2020
Can you confirm find(isnan(AS)) returns an empty array?
Image Analyst
Image Analyst on 11 Feb 2020
Attach the mat file where that happens with the paper clip icon if you still have trouble.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements 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!