Replace largest elements in matrix with NaN

I would like to replace the n largest numbers in first column with NaN in a matrix.
For example for value n = 3 for matrix A output will be B :
A =
17 2
5 68
79 28
900 17
77 63
90 87
B =
17 2
5 68
NaN 28
NaN 17
77 63
NaN 87
What will be the code for this?

 채택된 답변

Kevin Phung
Kevin Phung 2019년 5월 14일

1 개 추천

A =[17 2
5 68
79 28
900 17
77 63
90 87];
n = 3;
elem = sort(A(:,1),'d');
elem = elem(1:n);
A(ismember(A(:,1),elem)) = NaN;

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 NaNs에 대해 자세히 알아보기

질문:

2019년 5월 14일

답변:

2019년 5월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by