Problem 2345. row-th maximum row elements

Input a is a square matrix of size n*n. Output vector v is of size 1*n. The ith element of output v is the ith largest element of ith row of input matrix a. In case of a tie, take the ith member of the sorted elements.

Example:

Input:

    a=[  1 2 4; 
         4 5 5; 
         8 9 1];

Output:

v=[4 5 1]

Solution Stats

65.63% Correct | 34.38% Incorrect
Last Solution submitted on Oct 25, 2022

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers37

Suggested Problems

More from this Author44

Problem Tags

Community Treasure Hunt

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

Start Hunting!