Selection of 3 large value from a matrix

2 Ansichten (letzte 30 Tage)
Tinkul
Tinkul am 7 Apr. 2014
Kommentiert: Tinkul am 7 Apr. 2014
How can i select 3 largest value from a matrix and remaining make zero without changing the dimension,For eg A=[1 3 5 8 31 7 4 18] The output should be A=[0 0 0 8 31 0 0 18] Please help

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 7 Apr. 2014
Bearbeitet: Azzi Abdelmalek am 7 Apr. 2014
A=[1 3 5 8 31 7 4 18]
[ii,jj]=sort(A,'descend');
A(jj(4:end))=0
Or
A=[1 3 5 8 31 7 4 18]
[ii,jj]=sort(A,'descend');
B=zeros(size(A))
B(jj(1:3))=A(jj(1:3))

Weitere Antworten (0)

Kategorien

Mehr zu Software Development Tools finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!

Translated by