How to find the fifth largest value in a matrix

Please output the fifth largest number from a two-dimensional matrix with more than 5 elements and no repeated values.
%%Problem 2
disp('PROBELM 2')
disp('Random matrix A')
A=rand(3,3)
B=unique(A)
I am stuck after making the matrix. Any help would be appreciated.

Risposte (2)

madhan ravi
madhan ravi il 5 Feb 2019

2 Commenti

I am still confused on how to find, specifically, the fifth largest number.
when you specify n as 5 the last number in the result is the fifth largest number

Accedi per commentare.

Dong Shim
Dong Shim il 4 Mar 2019
B=unique(A);
% 'unique' also sorts A in the ascending order.
disp(B(end-4))

Categorie

Richiesto:

il 5 Feb 2019

Risposto:

il 4 Mar 2019

Community Treasure Hunt

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

Start Hunting!

Translated by